* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff8a00, #e52e71);
}

.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.signup-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: perspective(1000px); /* Adding perspective for 3D effect */
    width: 400px;
    height: 500px;
}

h2 {
    color: white;
    margin-bottom: 20px;
}

.signup-form {
    display: flex;
    flex-direction: column;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
}
.input-group input {
    width: 100%;
    padding: 10px;
    padding-right: 30px; /* Make room for the eye icon */
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: white;
    font-size: 16px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white;
}

.toggle-password:hover i {
    color: #ff8a00; /* Change the color on hover */
    cursor: pointer;
}
.input-group i {
    margin-right: 10px; /* Space between icon and input */
    color: white; /* Icon color */
    font-size: 20px; /* Adjust the icon size */
}
.input-group label {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 40px; /* Adjust label position */
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label {
    top: -15px; /* Label moves up when focused or filled */
    font-size: 12px;
    color: #ff8a00; /* Label color change */
}

.signup-btn {
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: #e52e71;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 30px;
}

.signup-btn:hover {
    background-color: #ff8a00; /* Button hover effect */
}

.extra-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px; /* Adjusted margin for spacing */
}

.extra-links button {
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.extra-links button:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Button hover effect */
}

.extra-links .home-btn i,
.extra-links .login-btn i {
    margin-right: 8px; /* Space between icon and text */
}

a {
    text-decoration: none;
    color: white; /* Link color */
}

input:focus {
    outline: none; /* Remove default outline */
}
