* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif; /* Pielieto Jost fontu visiem elementiem */
}

body {
    font-family: 'Jost', sans-serif; /* Nodrošina, ka Jost fonts tiek pielietots ķermenim */
    background-color: #f5f5dc; /* Bēša fona krāsa */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #555; /* Tumši pelēks fons pieteikšanās blokam */
    padding: 40px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Viegls ēnojums */
    text-align: center;
}

h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Izlīdzina ievades laukus centrā */
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #333; /* Tumši pelēks ievades laukiem */
    color: white;
    font-size: 16px;
}

.login-button {
    background-color: #4a4bda; /* Zilas krāsas pieteikšanās poga */
    color: white;
    font-size: 16px;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-button:hover {
    opacity: 0.9; /* Samazina caurspīdīgumu hover laikā */
}

.forgot-password {
    margin-top: 10px;
    color: #d3d3d3; /* Gaiši pelēka aizmirstās paroles saite */
    text-decoration: none;
    font-size: 14px;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.line {
    flex: 1;
    height: 1px;
    background-color: #d3d3d3; /* Pelēka līnija atdalīšanai */
    margin: 0 10px;
}

.separator span {
    color: #d3d3d3;
    font-size: 14px;
}

.google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #333;
    font-size: 14px;
    padding: 8px;
    width: 100%;
    border: 1px solid #ddd; /* Gaišs pelēks apmales */
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.google-login img {
    width: 20px;
    height: 20px;
    margin-right: 8px; /* Attālums starp ikonu un tekstu */
}
