* {
    box-sizing: border-box;
}

body {
    background-color: #F2F3F7;
    min-height: 100vh;
    font-family: "Outfit", "Segoe UI", Arial, sans-serif;
    margin: 0;
}

#wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 16px;
}

#wrapper_company {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 16px;
}

.auth-logo {
    max-height: 44px;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 28px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e4e4ee;
    padding: 36px 32px;
}

.auth-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px 0;
    letter-spacing: -0.3px;
}

.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-group {
    margin-bottom: 16px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: "Outfit", "Segoe UI", Arial, sans-serif;
    color: #1f2937;
    background: #f9f9fc;
    border: 1px solid #e0e0ea;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    line-height: 1.5;
}

.form-control:focus {
    border-color: #252B44;
    box-shadow: 0 0 0 3px rgba(37, 43, 68, 0.1);
    background: #fff;
}

.input-group {
    display: flex;
}

.input-group .form-control {
    border-radius: 8px 0 0 8px;
    flex: 1;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #f9f9fc;
    border: 1px solid #e0e0ea;
    border-left: none;
    border-radius: 0 8px 8px 0;
    color: #6b7280;
    font-size: 14px;
}

.eye-icon {
    cursor: pointer;
}

.eye-icon:hover {
    background: #f0f0f6;
}

.btn-auth {
    display: block;
    width: 100%;
    height: 44px;
    background: #252B44;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Outfit", "Segoe UI", Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.btn-auth:hover {
    background: #1a2038;
    color: #fff;
}

.btn-auth:active {
    background: #141829;
}

.auth-forgot {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #6b7280;
    text-decoration: none;
    margin-top: 6px;
}

.auth-forgot:hover {
    color: #252B44;
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
}

.auth-footer a {
    color: #252B44;
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.alert {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}

.alert-danger {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.toast {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 9999;
}

.toast-container {
    z-index: 9999;
}
