﻿@import url('site.css');

:root {
   /* --primary-color: #005ea5;*/
    --secondary-color: #f8f8f8;
    --text-color: #333333;
    --border-color: #cccccc;
}

body, html {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 90%;
    max-width: 360px;
    margin: 20px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 120px;
    margin-bottom: 15px;
}

h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

h2 {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.login-form {
    margin-bottom: 20px;
}

.btn-login {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-login:hover {
        background-color: var(--btn-hover);
    }

    .btn-login img {
        margin-right: 8px;
        height: 18px;
    }

.info-text {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

footer {
    margin-top: 20px;
    font-size: 11px;
    color: #999;
    text-align: center;
}

.divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 15px 0;
}
.divider-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--divider-color, #ccc);
}

.or-text {
    padding: 0 10px;
    font-family: 'Open Sans', sans-serif; /* Same font as the rest of the text */
    color: var(--text-color, #333);
    font-size: 14px; /* Adjust as needed */
}
@media (max-height: 600px) {
    .login-container {
        padding: 20px;
    }

    .logo {
        max-width: 100px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 13px;
    }

    .info-text {
        font-size: 11px;
    }

    footer {
        font-size: 10px;
    }
}
