
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    font-family: 'Inter', sans-serif !important;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif !important;
}


body {
    background-color: #ECEFF1; 
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    text-align: center;
}


header {
    background-color: #FFC067;
    padding: 20px 0;
}

header h1 {
    font-size: 2rem;
    color: #FFC067; 
    font-weight: bold;
}


main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}


form {
    width: 100%;
    max-width: 400px;
    margin: 20px 0; 
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}


input {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease;
}

input:focus {
    border-color: #4DB6AC; 
}


button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    color: white;
    background-color: #FFC067;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #c38b3d;
}

h2 {
    color: #4DB6AC; 
    font-size: 1.5rem;
    margin-bottom: 20px;
}

footer {
    background-color: #4DB6AC; 
    padding: 10px 0;
    margin-top: 30px;
}

footer p {
    color: white;
    font-size: 1rem;
}


.googlebutton {
    width: 20% !important;
    height: 10% !important;
    margin: 0 auto;
    display: block;
    background-color: white !important;
}

.googleimg {
    display: block;
    max-width: 100%;
    size: 10px !important;
    height: auto;
}