﻿body {
    background-color: #f5f5f5;
    margin: 0;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    max-width: 420px;
    width: 90%;
    background: white;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.icon-circle-yellow {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #F9A825, #F57F17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.input-group-text {
    border-radius: 0.5rem 0 0 0.5rem;
    background-color: #f8f9fa;
    border-right: none;
}

.input-group .form-control {
    border-radius: 0 0.5rem 0.5rem 0;
    border-left: none;
    padding: 0.6rem 0.75rem;
}

.btn-orange {
    background: linear-gradient(to right, #F9A825, #F57F17);
    color: white;
    font-weight: bold;
    padding: 0.65rem;
    border: none;
    border-radius: 10px;
    transition: 0.3s ease;
}

    .btn-orange:hover {
        background: linear-gradient(to right, #f57c00, #e65100);
        transform: translateY(-1px);
    }

a.nav-link.text-dark:hover {
    text-decoration: underline;
}

/* Toast default position */
@media (max-width: 767.98px) {
    .position-fixed {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
}
