/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #FFCB04;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    color: #333;
}

.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.login-card {
    width: 450px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    fill: #000000;
    margin-bottom: 30px;
}

.login-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

label {
    font-size: 24px;
    display: block;
    text-align: left;
    margin-left: 45px;
    margin-bottom: -10px;
}

.login-input {
    width: 325px;
    height: 75px;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding-left: 25px;
}

.login-button {
    width: 325px;
    height: 75px;
    background-color: black;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;

}

.login-button:hover {
    background-color: #FFCB04;
}

.help-link {
    font-size: 16px;
    color: #1F4FFF;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.help-link:hover {
    text-decoration: underline;
}

.google-container {
    display: inline-block;
}

.google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 325px;
    height: 95px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.75);
}

.google-button svg {
    width: 24px;
    height: 24px;
    fill: #4285F4;
    margin-right: 10px;
}

.google-button:hover {
    transform: scale(1.02);
}