body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.shell-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.shell-logo {
    width: 80px;
    height: auto;
    margin-bottom: 2rem;
}

.login-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.cookie-alert {
    background-color: #cce7ff;
    border: 1px solid #0066cc;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

    .cookie-alert .btn-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }

.form-floating .form-control {
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

    .form-floating .form-control:focus {
        border-color: #009EB4;
        box-shadow: 0 0 0 0.2rem rgba(0, 158, 180, 0.25);
    }

.btn-shell {
    background-color: #009EB4;
    border-color: #009EB4;
    color: white;
    padding: 12px 0;
    font-weight: 500;
}

    .btn-shell:hover {
        background-color: #003C88;
        border-color: #003C88;
    }

.forgot-password {
    color: #009EB4;
    text-decoration: none;
}

    .forgot-password:hover {
        color: #003C88;
        text-decoration: underline;
    }

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}

.alert-danger {
    border-color: #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}

.shell-header {
    text-align: center;
    margin-bottom: 2rem;
}

/*----------------------------------------------------------------------*/
/**************************** BUTTON FORMATS ****************************/
/*----------------------------------------------------------------------*/
.accent-button {
    height: 50px !important;
    border-radius: 6px;
    background-color: #009EB4;
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px;
    transition: all 0.5s;
    text-align: center;
    font-size: 16px;
}

    .accent-button:hover {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    .accent-button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

    .accent-button:hover span:after {
        opacity: 1;
        right: 0;
    }
