/* /public_html/spele/style.css ANDRIS KEISS */

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #f0f7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 360px;
    text-align: center;
}

h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 25px;
}

/* Formu stili */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: Arial, sans-serif; /* Atstājam vienkāršāku fontu ievades laukiem */
}

/* Pogu stils (vienāds saitēm un pogām) */
.button {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 18px;
    padding: 12px 25px;
    border: 2px solid #0288d1;
    border-radius: 10px;
    background-color: white;
    color: #0288d1;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
}

.button:hover {
    background-color: #0288d1;
    color: white;
}

/* Paziņojumu stili */
.message {
    margin-top: 15px;
    font-size: 14px;
}
.message.success {
    color: green;
}
.message.error {
    color: red;
}