
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
    background:#F5F3EF;


}

.container{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:100vh;
}

.left-section{
    padding:60px 50px;
}

.right-section{
    background:#2A2520;
    color:#FDFCFA;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:60px 50px;
}

h1{
    font-size:32px;
    font-weight:800;
    margin-bottom:15px;
    letter-spacing:-0.5px;
}

.subtitle{
    color:#9A8F82;
    margin-bottom:40px;
    font-size:14px;
}

.form-group{
    margin-bottom:30px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:30px;
}

.form-row.full{
    grid-template-columns:1fr;
}

label{
    display:block;
    font-size:13px;
    font-weight:700;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    color:#1C1816;
}

input{
    width:100%;
    padding:12px 0;
    border:none;
    border-bottom:1px solid #E8E3DD;
    color:#1C1816;
    font-size:14px;
    background:transparent;
  
    transition:0.3s;
}

input::placeholder{
    color:#ccc;
}

input:focus{
    outline:none;
    border-bottom-color:#C9B8A8;
}

.error-input{
    border-bottom:1px solid red !important;
}

.error-text{
    color:red;
    font-size:12px;
    margin-top:5px;
}

.checkbox-group{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:40px;
    font-size:12px;
    color:#666;
}

input[type="checkbox"]{
    margin-top:5px;
    width:16px;
    height:16px;
    cursor:pointer;
}

.checkbox-group a{
    color:#333;
    text-decoration:none;
    font-weight:600;
}

.checkbox-group a:hover{
    text-decoration:underline;
}

button{
    width:100%;
    padding:16px 20px;
    background:#1C1816;
    color:#fff;
    border:none;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:14px;
    transition:0.3s;
}

button:hover{
    background:#C9B8A8;
    color:#2A2520;
}

.footer{
    margin-top:40px;
    text-align:center;
    font-size:12px;
}

.footer p{
    color:#999;
    margin-bottom:10px;
    letter-spacing:1px;
}

.footer a{
    color:#000;
    font-weight:700;
    text-decoration:none;
    font-size:14px;
}

.footer a:hover{
    text-decoration:underline;
}

.right-section h2{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:30px;
    letter-spacing:-1px;
}

.right-section .highlight{
    color:#C9B8A8;
    display:block;
}

.red-line{
    width:60px;
    height:2px;
    background-color:#C9B8A8;
    margin:30px auto 50px;
}

.right-section .tagline{
    font-size:14px;
    color:#ccc;
    line-height:1.6;
}

@media(max-width:768px){
    .container{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .right-section h2{
        font-size:36px;
    }

    h1{
        font-size:24px;
    }
}
.input-wrapper {
    position: relative;
}

.input-wrapper input {
    padding-right: 45px;
}

.eye {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

.eye:hover {
    color: #000;
}

.message-container {
    margin-bottom: 18px;
}

.alert {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.alert.error {
    color: #7a1c1c;
}



.error-text {
    color:#b91c1c;
    font-size: 12px;
    margin-top: 5px;
}


.alert.error {
    color: #b91c1c;
    font-weight: 600;
}

.alert.success {
    color: #166534;  

}

/* Toast notifications */
.toast {
  background: #333;
  color: #fff;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  opacity: 0.9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: opacity 0.5s;
}
.toast.success {
  background: #166534; /* success green */
}
.toast.error {
  background: #b91c1c; /* error red */
}






       