/* -------------------------
   LOGIN PAGE — BASE STYLE
   Matches screenshot v1
--------------------------*/

.atl-login-page {
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: "Fira Sans Condensed", sans-serif;
    background: #f8f8f8;
}

/* Card Container */
.atl-login-card {
    max-width: 560px;
    margin: 0 auto;
    background: #eef1ef;
    border: 2px solid #2f5248;
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.atl-login-card-body {
    padding: 40px 45px;
}

/* Title */
.atl-login-title {
    text-align: center !important;
    font-weight: 800;
    font-size: 32px !important;
    color: #1e2a28;
    letter-spacing: 1px;
    text-transform: uppercase;
   
}

/* Labels */
.atl-login-card-body label {
    font-size: 15px;
    font-weight: 600;
    color: #1d2b29;
}

/* Inputs */
.atl-input {
    height: 48px;
    border-radius: 30px !important;
    border: 1px solid #c8cdca;
    background: #fff;
    padding-left: 18px;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

.atl-input:focus {
    border-color: #325c52 !important;
    box-shadow: 0 0 0 3px rgba(47,82,72,0.15);
}

/* Checkbox */
.form-check-label {
    font-size: 14px;
    color: #1e2a28;
}

.form-check-input:checked {
    background-color: #2f5248;
    border-color: #2f5248;
}

/* Links */
.atl-link {
    color: #2f5248;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.atl-link:hover {
    text-decoration: underline;
}

/* Button */
.atl-login-btn {
    font-size: 18px;
    display: inline-block;
    background: #325c52 !important;      /* original green */
    color: #fff !important;
    padding: 10px 40px;
    border-radius: 30px!important;
    margin-top: 20px;
    border: 1px solid #325c52 !important; 
    width: 100%;              /* matches screenshot */
    transition: all 0.2s ease-in-out;
}

.atl-login-btn:hover {
    background: #fff !important;
    color: #325c52 !important;   /* green text on hover */
    border-color: #325c52 !important;
}

/* Bottom links */
.atl-login-card-body small {
    font-size: 13px;
    color: #6b7876;
}

/* Responsive */

/* Desktop (keeps one-line) */
@media (min-width: 992px) {
    .atl-login-title {
        font-size: 32px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }
}

/* Tablets + medium phones */
@media (max-width: 991px) {
    .atl-login-title {
        font-size: 28px !important;
        white-space: normal !important;  /* allow wrap */
        line-height: 1.2 !important;
        text-align: center !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .atl-login-title {
        font-size: 24px !important;
        white-space: normal !important;  /* wrap safely */
        line-height: 1.2 !important;
        text-align: center !important;
    }
}
