/* General Styles */
body {
    overflow: hidden;
}

/* Container Styles */
.login-container {
    padding: 0;
    height: 100vh;
}

.login-row {
    margin: 0;
    height: 100%;
}

/* Left Side - Form Section */
.login-form-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FFFFFF;
    position: relative;
}

.login-form-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 469px;
    width: 100%;
    margin: 0 auto;
}

/* Logo */
.login-logo {
    margin-bottom: 1.5rem;
}

.login-logo img {
    width: 48px;
    height: 48px;
}

/* Welcome Text */
.login-welcome {
    margin-bottom: 1.5rem;
}

.login-title {
    font-size: 31px;
    font-weight: 700;
    color: #1E1E1E;
    line-height: 36px;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #5A5A5A;
    font-size: 16px;
    line-height: 19px;
    margin: 0;
}

/* Form Styles */
.login-form-group {
    margin-bottom: 1rem;
    gap: 12px;
}

.login-label {
    color: #1E1E1E;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 12px;
}

.login-input {
    padding: 12px 10px;
    border: 1px solid #D1D9DD;
    border-radius: 10px;
    font-size: 16px;
    height: 47px;
}

.login-input::placeholder {
    color: #9D9D9D;
    font-size: 16px;
}

.login-input:focus {
    border-color: #073F3B;
    box-shadow: 0 0 0 0.2rem rgba(7, 63, 59, 0.25);
}

/* Button Styles */
.login-button {
    width: 100%;
    color: #FFFFFF;
    background-color: #073F3B;
    padding: 10px 16px;
    border-radius: 7px;
    font-weight: 500;
    font-size: 16px;
    height: 39px;
    border: none;
    line-height: 19px;
}

.login-button:hover {
    background-color: #062F2C !important;
}

/* Footer */
.login-footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    color: #5A5A5A;
    font-size: 16px;
    line-height: 19px;
}

.login-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.login-footer-link {
    color: #5A5A5A;
    text-decoration: none;
}

.login-footer-link:hover {
    color: #1E1E1E;
    text-decoration: none;
}

/* Right Side - Image Section */
.login-image-section {
    background-size: cover;
    background-position: center;
    background-color: #073F3B;
}

/* Error Message */
.login-error {
    color: #dc3545;
    font-size: 0.875rem;
}