/* General Reset */
* {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-Screen Centering */
body {
    background:  url("https://cdn.pixabay.com/photo/2015/12/01/20/28/road-1072821_640.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full height of viewport */
}


/* Navbar */
.navbar {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    display: flex;
    justify-content: flex-start;
}

/* Back Button */
.back-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #218838;
    transform: scale(1.05);
}

/* Centering the Signup Form */
.signup-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-top: 200px;
}

/* Form Hover Effect */
.signup-wrapper:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}
.signup-wrapper input::placeholder{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
    color: #444;
}

/* Signup Title */
.signup-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Input Fields */
.signup-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.signup-profilepic{
    display: none;
}
.lab-signup-profile{
    display: inline-block;
    cursor: pointer;
     margin-bottom: 15px;
}
.lab-signup-profile img{
    height: 50px;
    border-radius: 50%;

}
.user-gender{
    display: flex;
    flex-direction: row;
    align-items: left;
    margin-bottom: 15px;
}
.user-gender label{
    margin-left: 5px;
    margin-right: 15px;
    color: #222;
    font-size: 14px;
}

.signup-input:hover,
.signup-input:focus {
    border-color: #011cb5;
    outline: none;
    box-shadow: 0 0 10px rgba(1, 28, 181, 0.4);
    background-color: rgba(255, 255, 255, 0.8);
}

/* Signup Button */
.bttn{
    display: flex;
    justify-content: center;
}
.reset-button{
    width: 100%;
    margin-right: 20px;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.reset-button:hover {
    background-color: #218838;
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.signup-button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.signup-button:hover {
    background-color: #218838;
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Login Link */
.signup-text {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.signup-link {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.signup-link:hover {
    color: #218838;
    text-decoration: underline;
}

/* Signup Message */
.signup-message {
    margin-top: 10px;
    font-size: 14px;
    color: red;
}

/* Responsive Design */
@media (max-width: 480px) {
    .signup-wrapper {
        width: 90%;
        padding: 20px;
    }
}
@media(max-width:274px){
    .user-gender{
        
        flex-direction: column;
        margin-left: -90px
        
    }
    .male{
        margin-left: -15px;
    }
    .others{
        margin-left: -5px;
    }
    .user-gender input{
    margin-bottom: 5px;
    }
}
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding-right: 40px;
}

.password-container i {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #555;
}

.password-container i:hover {
    color: #000;
}
