:root{
    --blue-black: #2d3436;
    --red: #fc6969 ;
    --light-red: #f55c5c;
    --blue: #5470be;
    --light-blue: #365bc0;
    --border:.1rem solid rgba(99, 110, 114,1.0);
    --box-shadow:0 .5rem 1rem rgba(52, 73, 94,1.0);
}

.message{
    padding: 10px;
    margin: 15px 0;
    border-radius: 1px;
    background-color: #ffff; 
    color: var(--red); /* Dark red text */
    
}



.signup-wrapper{
    background-image: url('../images/about.jpg'); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    width: 100%; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}




/* Signup Form Container */
.signup-form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: var(--blue);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
}



/* Form Header */
.signup-form-container h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #ffff;
    text-align: center;
}

/* Input Fields */
.signup-form-container .box {
    width: 90%;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.signup-form-container .box:focus {
    border-color: var(--light-blue);
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #333;
    z-index: 1; 
}

input[type="password"],
input[type="text"] {
    padding-right: 30px; /* Adjust padding to ensure space for the icon */
}

/* Submit Button */
.signup-form-container .btn {
    width: 100%;
    padding: 0.8rem 0;
    background: var(--light-red);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.signup-form-container .btn:hover {
    background: var(--red);
    color: #ffff;
}

/* Link Styling */
.signup-form-container p {
    font-size: 0.9rem;
    color: #ffff;
    text-align: center;
    margin-top: 1rem;
}

.signup-form-container a {
    color: #ffff;
    text-decoration: none;
    font-weight: 600;
}

.signup-form-container a:hover {
    text-decoration: underline;
}





/*end of signup container*/