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

body{
    background:#f4f6f9;
}

.auth-container{
    min-height:100vh;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding-top:50px;   /* Pwede mong gawing 60px o 70px */
}

.auth-box{
    width:520px;
    background:white;
    border:1px solid #333;
    padding:45px 40px;
}

.auth-box h1{
    text-align:center;
    margin-bottom:35px;
    color:#444;
}

.auth-box label{
    display:block;
    margin:18px 0 8px;
    font-size:18px;
    color:#444;
}

.auth-box input{
    width:100%;
    padding:14px;
    font-size:17px;
    border:1px solid #444;
}

.auth-box button{
    width:100%;
    margin-top:30px;
    padding:16px;
    border:none;
    background:#18650e;
    color:white;
    font-size:17px;
    font-weight:bold;
    border-radius:6px;
}

.auth-box p{
    text-align:center;
    margin-top:18px;
    font-size:16px;
}

.auth-box a{
    color:#333;
    margin-left:20px;
}
.auth-header{
    text-align:center;
    margin-top:40px;
    margin-bottom:35px;
}

.auth-header img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:12px;
}

.auth-header h2{
    margin:0;
    color:#006b2e;
    font-size:42px;
    font-weight:700;
}

.auth-header p{
    margin-top:8px;
    color:#666;
    font-size:22px;
}
.back-login{
    text-align:center;
    margin-top:20px;
    font-size:16px;
    color:#555;
}

.back-login a{
    color:#006b2e;
    font-weight:600;
    text-decoration:none;
    margin-left:5px;
    transition:0.3s;
}

.back-login a:hover{
    text-decoration:underline;
    color:#0b7a35;
}
.register-link{
    text-align:center;
    margin-top:20px;
    font-size:16px;
    color:#555;
}

.register-link a{
    color:#006b2e;
    font-weight:600;
    text-decoration:none;
    margin-left:5px;
    transition:0.3s;
}

.register-link a:hover{
    text-decoration:underline;
    color:#0b7a35;
}