/* ===== Reset & Base ===== */


/* background-color: #f0f2f5; */
.signup-card-background{
    width: 100%;
    height: 94vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1B3C53;
}

/* ===== Card ===== */
.signup-card {
    /* background: #fff; */
    background: rgb(29, 78, 113);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(23, 60, 86, 0.1);
    width: 380px;
    border: 2px solid rgb(23, 60, 86);
}

.signup-card h1 {
    text-align: center;
    color: #1877f2;
    margin-bottom: 20px;
    font-size: 32px;
}

.signup-card h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* ===== Form Inputs ===== */
.signup-card input,
.signup-card select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    font-size: 15px;
}

.signup-card input:focus,
.signup-card select:focus {
    outline: none;
    border-color: #1877f2;
    box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
}

/* ===== Gender Row ===== */
.gender-row {
    display: flex;
    justify-content: space-between;
}

.gender-option {
    flex: 1;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    margin-right: 10px;


}

.gender-option:last-child {
    margin-right: 0;
}

/* ===== Button ===== */
.signup-btn {
    width: 100%;
    padding: 10px;
    background-color: #42b72a;
    border: none;
    color: white;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin: 15px 0 0 0;
}

.signup-btn:hover {
    background-color: #36a420;
}

/* ===== Footer Link ===== */
.login-link {
    text-align: center;
    margin-top: 15px;
}

.login-link a {
    text-decoration: none;
    color: #1877f2;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}


.message-container{
    position: relative;
    height:40px;
    background:aqua;
    width:96%;
    border-radius:5px;
    margin: 5px auto;
    display:flex;
    justify-content:center;
    align-items: center;

}
.message-django{
    font-family:sans-serif;
}
.django-message-btn{ 
    position: absolute;
    top:0;
    right:0;
    color: black;
    font-size:25px;   
}



