.error-message {
    padding: 1rem;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.success-message {
    padding: 1rem;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 1rem;

    font-family: "Inter", sans-serif;
}

body {
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.6), rgba(31, 31, 31, 0.6)),
    url('../images/slider-image.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    color: #222;
}

.login-card h2 {
    margin-bottom: -0.5rem;
    margin-top: 1rem;
    font-size: 2rem;
    color: #111;

    font-family: "Borel", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
}

.login-card p {
    color: #444;
    opacity: 1;
    margin-bottom: 2rem;

    font-family: "Cabin", sans-serif;
}

.form-control {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;

    font-family: "Inter", sans-serif;
}

.form-control::placeholder {
    color: #777;

    font-weight: 300;
}

.form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

.btn-login {
    background: var(--primary-color);
    color: #fff;
    width: 100%;
    border-radius: 6px;
    padding: 0.75rem;
    transition: all 0.3s;

    font-family: "Inter", sans-serif;
    font-weight: bolder;
}

.btn-login:hover {
    background: var(--primary-color-hover);
    color: white !important;
    transform: translateY(-1px);
}

.login-footer {
    margin-top: 3rem;
    font-size: 1rem;
    text-align: center;
    color: #111;
    font-weight: bold;

    font-family: "Cabin", sans-serif;
}

.login-footer a {
    color: var(--primary-color-hover);
    text-decoration: none;
}

.login-footer-extra {
    font-size: 1rem;
    text-align: center;
    color: var(--primary-color-hover);
    font-weight: bold;

    font-family: "Cabin", sans-serif;
}

.login-footer a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.login-footer-extra a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}


.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
    font-size: 1rem;
}

.input-group {
    position: relative;
}

.input-group input {
    padding-left: 0.5rem;
}

.input-group-text {
    background: #fff;
    border: 1px solid #000;
    border-right: none;
    color: #555;
}

.form-control {
    background: #fff;
    border: 1px solid #000;
    border-left: none;
    color: #000;
}

.form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

.input-group .fa {
    font-size: 1rem;
}


.error {
    color: #ffb3b3;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}