* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
}

body {
    background: #e8e8e9;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo h2 {
    color: #2a5298;
    margin-bottom: 5px;
}

.logo p {
    color: #777;
    font-size: 14px;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #2a5298;
    outline: none;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 20px;
}

.options a {
    text-decoration: none;
    color: #2a5298;
}

.options a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #2a5298;
    border: none;
    margin-bottom:10px;
    color: #fff;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #1e3c72;
}


.custom-alert {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid transparent;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    gap: 10px;
}

/* Error (Bootstrap alert-danger style) */
.custom-alert.error {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* Icon */
.alert-icon {
    font-size: 18px;
}

/* Text */
.alert-text {
    flex: 1;
}

/* Close Button */
.alert-close {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}

.alert-close:hover {
    opacity: 1;
}

/* Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}


.footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #555;
}
