﻿.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.captcha-container {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 20px 0;
    text-align: center;
}

.captcha-image {
    border: 1px solid #ccc;
    padding: 5px;
    background: white;
    margin-bottom: 10px;
    width: 200px;
    height: 60px;
}

.error-message {
    color: #d32f2f;
    background: #ffebee;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    border-left: 4px solid #d32f2f;
}

.warning-message {
    color: #f57c00;
    background: #fff3e0;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    border-left: 4px solid #f57c00;
}

.lockout-message {
    color: #c62828;
    background: #ffcdd2;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    border: 2px solid #c62828;
}

.attempts-warning {
    color: #f57c00;
    font-size: 12px;
    margin-top: 5px;
}

.refresh-button {
    background: #4caf50;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 10px;
}

    .refresh-button:hover {
        background: #45a049;
    }

.submit-button {
    background: #2196f3;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}

    .submit-button:hover {
        background: #0b7dda;
    }

    .submit-button:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

.expiry-note {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.captcha-input {
    width: 200px;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.audio-button {
    background: #ff9800;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
}

    .audio-button:hover {
        background: #f57c00;
    }

.accessibility-note {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}

/* From Uiverse.io by andrew-demchenk0 */
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    gap: 8px;
    height: 34px;
    /*width: 112px;*/
    border: none;
    /*background: #ff362b34;*/
    border-radius: 20px;
    cursor: pointer;
}

.lable {
    line-height: 20px;
    font-size: 17px;
    color: #000;
    letter-spacing: 1px;
}

.button:hover {
    background: #ff362b52;
}

    .button:hover .svg-icon {
        animation: spin 2s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
