﻿body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(135deg, #2c3e50 0%, #3b5870 50%, #95a5a6 100%);
    overflow-y: hidden;
    margin: 0;
}

.login-container {
    background: lightgrey;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 100%;
    max-width: 360px;
    text-align: center;
}

    .login-container h1 {
        margin-bottom: 14px;
        font-size: 18px;
        color: #333;
    }

    .login-container input {
        width: 90%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 12px;
    }

    .login-container button {
        width: 100%;
        padding: 10px;
        background-color: #2c3e50;
        border: none;
        border-radius: 5px;
        color: #fff;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .login-container button:hover {
            background-color: #34495e;
        }

    .login-container a {
        display: block;
        margin-top: 10px;
        text-decoration: none;
        color: #6a11cb;
        font-size: 14px;
    }

.error-summary {
    color: red;
    font-size: 14px;
    margin-bottom: 15px;
}

a {
    text-decoration: underline;
}

    a:hover {
        text-decoration: underline;
        cursor:pointer;
    }

.forgot-password {
    margin-top: 10px;
    text-align: center;
}

    .forgot-password a {
        text-decoration: none;
        color: #2c3e50;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .forgot-password a:hover {
            color: #34495e;
            text-decoration: underline;
        }

.animated-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: none;
    border-color: #2c3e50;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.5);
    background-color: #f0f8ff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

    .modal .btn-primary {
        background-color: #2c3e50;
         font-size: 13px;
    }

        .modal .btn-primary:hover {
            background-color: #34495e;
        }

.modal-content {
    background: lightgrey;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.modal-title {
    font-size: 12px;
}

.modal-close {
    cursor: pointer;
    font-size: 20px;
    color: #888;
}

    .modal-close:hover {
        color: #333;
    }

.modal-body {
    padding: 15px 0;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .form-group label {
        flex: 1;
        text-align: left;
        font-size: 14px;
    }

    .form-group input {
        flex: 2;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }


.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 16px;
}

.input-container {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

    .input-container .icon {
        margin-right: 10px;
        font-size: 16px;
        color: #2c3e50;
    }

    .input-container .animated-input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 13px;
        background: transparent;
    }


.footer {
    background-color: #2c3e50;
    color: #1abc9c;
    text-align: center;
    padding: 0px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 13px;
}
    .footer a {
        color: #1abc9c;
        text-decoration:none;
    }