/* LOGIN SECTION */

.login-section {
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.login-container {
    width: 90%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.login-box {
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    font-size: 28px;
    color: #538167;
    margin-bottom: 15px;
}

.terms {
    font-size: 12px;
    margin-bottom: 20px;
    color: #555;
}

.terms a {
    color: #0073bb;
}

.social-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 12px;
    cursor: pointer;
}

.social-btn img {
    width: 20px;
}

.apple img {
    width: 18px;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider span {
    background: white;
    padding: 0 10px;
    color: #888;
}

form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 12px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #ffc107;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.email-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #0073bb;
}

.signup {
    text-align: center;
    margin-top: 10px;
}

.signup a {
    color: #0073bb;
}

/* RIGHT IMAGE */
.illustration img {
    width: 450px;
    height: 450px;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
        text-align: center;
    }

    .illustration img {
        width: 300px;
        height: 300px;
    }
}


.signup-section{
    width:100%;
    padding:50px 0;
    display:flex;
    justify-content:center;
}

.signup-container{
    width:90%;
    max-width:1200px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
}

.signup-box{
    width:100%;
    max-width:420px;
}

.signup-box h2{
    font-size:28px;
    color:#538167;
    margin-bottom:5px;
}

.subtitle{
    font-size:14px;
    color:#444;
    margin-bottom:15px;
}

.terms{
    font-size:12px;
    margin-bottom:20px;
    color:#666;
}

.terms a{
    color:#0073bb;
}

.social-btn{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    background:#fff;
    border-radius:6px;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    cursor:pointer;
}

.social-btn img{
    width:20px;
}

.divider{
    text-align:center;
    margin:20px 0;
    position:relative;
}

.divider span{
    background:#fff;
    padding:0 10px;
    color:#888;
}

form input{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
    margin-bottom:12px;
}

.row{
    display:flex;
    gap:10px;
}

.signup-btn{
    width:100%;
    padding:12px;
    background:#ffc107;
    border:none;
    color:#fff;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
}

.login{
    text-align:center;
    margin-top:10px;
}

.login a{
    color:#0073bb;
}

/* ILLUSTRATION */
.illustration img{
    width:450px;
    height:auto;
}

/* RESPONSIVE */
@media(max-width:900px){
    .signup-container{
        flex-direction:column;
        align-items:center;
    }

    .illustration img{
        width:300px;
    }
}