* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    border-top: 4px solid #FA6000;
}

.header {
    background: #000;
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-container img {
    height: 60px;
    width: auto;
}

.header h1 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.header p {
    font-size: 14px;
    color: #ccc;
}

.form-container {
    padding: 35px 40px;
}

.status-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #4caf50;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.form-group label .required {
    color: #FA6000;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    color: #000;
}

.form-control:focus {
    outline: none;
    border-color: #FA6000;
    box-shadow: 0 0 0 3px rgba(250, 96, 0, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.error-message {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 6px;
    display: block;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #FA6000;
}

.remember-me label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #FA6000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e05500;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 96, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.link-primary {
    color: #FA6000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-primary:hover {
    color: #e05500;
    text-decoration: underline;
}

.footer-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-text {
    color: #666;
    font-size: 14px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff5f0;
    border-radius: 6px;
    color: #FA6000;
    font-size: 12px;
    border: 1px solid #ffe0d1;
}

.security-badge svg {
    width: 16px;
    height: 16px;
}

.text-center {
    text-align: center;
}

.forgot-password {
    text-align: center;
    margin-top: 15px;
}

.forgot-password a {
    color: #FA6000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 25px 20px;
    }

    .footer-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header {
        padding: 30px 20px 20px;
    }
}
