/* Login Page Specific CSS */
body {
    background-color: #F7FCF8;
    height: 100vh;
}

.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.login-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.login-image {
    background-image: url('../images/bg-gedungunipal.png');
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(30, 130, 76, 0.8), rgba(20, 90, 50, 0.9));
}

.login-image .content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.login-image .content h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.login-image .content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.login-form-box {
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-box .title {
    font-size: 28px;
    font-weight: 700;
    color: #38424D;
    margin-bottom: 10px;
}

.login-form-box .subtitle {
    color: #747E88;
    margin-bottom: 40px;
}

.form-group label {
    font-weight: 600;
    color: #38424D;
    margin-bottom: 8px;
    display: block;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1E824C;
    z-index: 10;
    font-size: 18px;
}

.input-group .form-control {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding-left: 45px;
    font-size: 15px;
    color: #38424D;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    width: 100%;
}

.input-group .form-control:focus {
    border-color: #1E824C;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(30, 130, 76, 0.1);
    outline: none;
}

.forgot-link {
    color: #1E824C;
    font-weight: 500;
    font-size: 14px;
}

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

.bottom-link p {
    color: #747E88;
}

.bottom-link a {
    color: #1E824C;
    font-weight: 600;
}

.bottom-link a:hover {
    text-decoration: underline;
}

.back-link {
    color: #747E88 !important;
    font-size: 14px;
    font-weight: 500 !important;
}

.back-link:hover {
    color: #1E824C !important;
}

@media (max-width: 991px) {
    .login-form-box {
        padding: 40px 30px;
    }
}
