* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif; /* Jost fonta stils visiem elementiem */
}

body {
    font-family: 'Jost', sans-serif; /* Nodrošina, ka fonta stils piemērojas body */
    background-color: #f5f5dc; /* Bēša fona krāsa */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.signup-container {
    background-color: #555; /* Tumšs fons reģistrācijas formai */
    padding: 40px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Ēna, lai izceltu formu */
    text-align: center;
}

h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #333; /* Tumšs fons ievades laukiem */
    color: white;
    font-size: 16px;
}

.signup-button {
    background-color: #4a4bda; /* Zils fons pogai */
    color: white;
    font-size: 16px;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signup-button:hover {
    opacity: 0.9; /* Gaismas efekts hover laikā */
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.line {
    flex: 1;
    height: 1px;
    background-color: #d3d3d3;
    margin: 0 10px;
}

.separator span {
    color: #d3d3d3;
    font-size: 14px;
}

.google-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #333;
    font-size: 14px;
    padding: 8px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.google-signup img {
    width: 20px;
    height: 20px;
    margin-right: 8px; /* Atstarpe starp Google ikonu un tekstu */
}
