/* register.css */


.register-left {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}
/* Body */
.login-body {
    min-height: 100vh;
    background-color: #ffffff; /* full white background */
}

/* Left Column - Branding */
.login-left {
    
    background-color: #ffffff; /* full white */
    padding: 30px;
    text-align: center;
}

.login-image {
    max-width: 80%;
    height: auto;
    margin-top: 20px;
}

/* Right Column - Form */
.login-right {
    padding: 30px;
    background-color: #ffffff; /* full white */
}

.login-form-container {
    max-width: 400px;
    margin: 0 auto;
}

/* Buttons */
.btn-login {
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
}

/* Back Button */
.back-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .register-left {
        display: none;
    }

    .register-left {
        padding: 20px;
    }

    .back-btn {
        top: 10px;
        left: 10px;
    }
}
@media (max-width: 768px) {
 .register-left {
        display: none;
    }
}



/* Back Button - Transparent Version */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 12px;
    background-color: rgba(0, 123, 255, 0.05); /* very light blue background */
    color: #007bff; /* blue text */
    border: 1px solid #007bff; /* subtle blue border */
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.back-btn:hover {
    background-color: rgba(0, 123, 255, 0.15); /* slightly darker on hover */
    transform: translateY(-2px);
}

.back-btn i {
    font-size: 1rem; /* icon size */
}