body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #a6c1ee, #a6c1ee);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 350px;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h2 {
    color: #333;
    margin-bottom: 30px;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 25px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    outline: none;
}

button {
    width: 100%;
    background-color: #4285f4;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.inputfield {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 25px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    outline: none;
}

button:hover {
    background-color: #4F46E5;
}

.separator {
    margin: 20px 0;
    position: relative;
}

.separator span {
    background-color: #fff;
    padding: 0 10px;
    color: #888;
    font-size: 14px;
}

.separator:before, .separator:after {
    content: "";
    display: block;
    height: 1px;
    width: 10px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
}

.separator:before {
    right: 100%;
    margin-right: 10px;
}

.separator:after {
    left: 100%;
    margin-left: 10px;
}


.separator {
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.separator span {
    background-color: #fff;
    padding: 0 10px;
    color: #888;
}

.separator:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: -1;
}


.flash-messages {
    margin-bottom: 20px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

#google-signin-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 25px; /* Stondato */
    background-color: white;
    color: #555;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#google-signin-button img {
    width: 20px;
    height: 20px;
}

#google-signin-button:hover {
    background-color: #f7f7f7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#google-signin-button:active {
    background-color: #eee;
}