body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #4A5568;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-container {
    position: relative;
    min-height: 100vh;
}

.auth-header {
    height: 150px;
    background-color: #2a5a97;
    background-image:
        linear-gradient(135deg, #3c7ac2 25%, transparent 25.1%),
        linear-gradient(105deg, #3167a3 65%, transparent 65.1%);
    padding: 1.5rem 2.5rem;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 45px;
    width: 45px;
    margin-right: 15px;
}

.header-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.app-name {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.app-description {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.2;
}

.login-card {
    position: absolute;
    top: 290px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2.5rem; 
    box-sizing: border-box;
    text-align: left;
    z-index: 10;
}


.form-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

.form-subtitle {
    font-size: 0.75rem;
    color: #2D3748;
    line-height: 1.5;
}

.login-form {
    margin-top: 2rem;
}

.input-group-custom {
    position: relative;
    margin-bottom: 1.25rem;
}

.input-icon, .input-icon-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #A0AEC0;
    font-size: 1rem;
}

.input-icon {
    left: 15px;
}

.input-icon-right {
    right: 15px;
    cursor: pointer;
}

.form-control {
    width: 100%;
    height: 40px;
    padding: 12px 12px 12px 48px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2D3748;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #3182CE;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

.btn-login {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #007BFF;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-login:hover {
    background-color: #0069D9;
}

.d-grid {
    display: grid;
}