body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, #faad3f, #f48120);
    font-family: Arial, sans-serif;
}

.container {
    background: linear-gradient(45deg, #4e23da, #58248b);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.profile-pic {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 20px;
    background-image: url('cloudflare.svg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
}

.input-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: white;
    border-radius: 30px;
    padding: 10px;
}

.input-container img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.input-container input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px;
    border-radius: 30px;
}

.input-container input::placeholder {
    color: #d3d3d3;
}

.register-btn {
    background: #ff4b2b;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.register-btn:hover {
    background: #ff2d1f;
}
