@charset "UTF-8";

@font-face {
    font-family: 'basquete';
    src: url('../fontes/Basketball.otf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    background-image: url('../imagens/fundo-login.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    padding: 30px;
    width: 450px;
    border-radius: 20px;
}

input {
    height: 30px;
    text-align: center;
    background-color: #838d8d54;
    border-radius: 6px;
}

input:hover {
    color: #e48b16;
}

.logo {
    text-align: center;
    padding: 20px;
    font-family: 'basquete';
    font-weight: normal;
}


#login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#email {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

#password {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;

}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.flex-row>div>label {
    font-size: 14px;
    color: rgb(24, 19, 19);
    font-weight: 400;
}

.span {
    font-size: 14px;
    margin-left: 5px;
    color: #0d65e9;
    font-weight: 500;
    cursor: pointer;
}

.span:hover {
    text-decoration: underline;
    color: #e48b16;
}

.button-submit {
    margin: 20px 0 10px 0;
    background-color: #838d8d;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
}

.button-submit:hover {
    background-color: #e48b16;
}

a {
    text-decoration: none;
    color: white;
}

.p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.social-login>p {
    display: flex;
    justify-content: center;
}

.social-grid {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.btn:hover {
    border: 1px solid #2d79f3;
    ;
}

.btn-google {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;

}