﻿
#loadingPanel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-family: sans-serif;
    display: none;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Toast error baslangic*/
.toast-error {
    background: linear-gradient(135deg, #ff4b4b, #ff7676) !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    padding: 16px !important;
    box-shadow: 0 4px 15px rgba(255, 75, 75, 0.2) !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

    .toast-error button {
        position: absolute !important;
        right: 8px !important;
        background: transparent !important;
        border: none !important;
        color: white !important;
    }

@media (min-width: 768px) {
    .toast-error {
        max-width: 400px !important;
    }
}
/*Toast error bitis*/

.login-info {
    text-align: center;
    background: #003366;
    color: #fff;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.12);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.info-text {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    padding-right: 5px;
}

.info-icon {
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
    padding-left: 5px;
}

.reset-link {
    display: block;
    font-size: 15px;
    color: #0056b3;
    text-decoration: underline;
    margin: 14px auto 0 auto;
    font-weight: bold;
    text-align: center;
    max-width: 500px;
}

@media (max-width: 600px) {
    .info-text, .reset-link {
        font-size: 14px;
    }

    .info-icon {
        font-size: 18px;
    }

    .login-info {
        max-width: 100%;
    }

    .reset-link {
        max-width: 98%;
    }
}
