﻿body {
    font-family: 'Roboto', sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 10px;
        font-weight: 400;
        color: #202124;
    }

    .login-container p {
        text-align: center;
        color: #5f6368;
        font-size: 14px;
        margin-bottom: 30px;
    }

.form-group {
    position: relative;
    margin-bottom: 20px;
}

    .form-group input {
        width: 100%;
        padding: 16px 12px 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        background-color: transparent;
        outline: none;
    }

        .form-group input:focus {
            border-color: #1a73e8;
            box-shadow: 0 0 0 1px #1a73e8;
        }

    .form-group label {
        position: absolute;
        top: 16px;
        left: 12px;
        background: white;
        padding: 0 4px;
        color: #757575;
        font-size: 16px;
        transition: all 0.2s ease;
        pointer-events: none;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label {
        top: -8px;
        left: 10px;
        font-size: 12px;
        color: #1a73e8;
    }

.validation-summary-errors {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

    .validation-summary-errors li {
        list-style-type: none;
        text-align:left;
        text-align:justify-all;
    }

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

    .actions a {
        font-size: 14px;
        color: #1a73e8;
        text-decoration: none;
    }

.login-btn {
    width: 100%;
    background-color: #1a73e8;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

    .login-btn:hover {
        background-color: #1669c1;
    }

.footer {
    text-align: center;
    font-size: 12px;
    color: #5f6368;
    margin-top: 20px;
}

    .footer a {
        color: #1a73e8;
        text-decoration: none;
    }
