@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body,
html {
    height: 100%;
    margin: 0;
    font-family: "Roboto", sans-serif !important;
}

.container {
    width: 100%;
    height: 100%;
    background-image: url('images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.header {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 12px;
    gap: 8px;
}

.header p {
    margin: 0;
    color: white;
    font-size: 14px;
}

.header button {
    min-height: 28px;
    border-radius: 32px;
    padding: 0 14px;
    color: white;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
}

.body {
    width: 100%;
    height: calc(100% - 48px);
    display: flex;
    justify-content: center;
    /* padding-top: 20px; */
}

.content {
    max-width: 440px;
    width: 50%;
    min-height: 400px;
    max-height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    padding: 40px 38px 60px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: all 0.2s;
}
.content:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .8);
}

.content-header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content-header h2{
    color: white;
    margin: 0;
    font-size: 32px;
    font-weight: 500;
}

.login-btn{
    background-color: rgb(247, 173, 16);
    color: white;
    border: none;
    padding: 9px 40px;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
    width: fit-content;
    align-self: flex-end;
}

.login-btn:hover{
    background-color: rgb(255, 174, 0);
}

.login-inputs{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 24px;
}

.input-group{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.input-group label{
    color: white;
    font-size: 18px;
}

.input-group input{
    padding: 0 8px;
    min-height: 42px;
    border: none;
    border-radius: 4px;
}
.input-group input:focus-within{
    border: none;
    outline: none;
}

.input-group input::placeholder{
    color: rgb(184, 184, 184);
}

.input-group-titles{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-group-titles a{
    text-decoration: none;
    color: white;
}

.content-body{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-footer,
.login-option{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-option img{
    width: 24px;
    height: 24px;
}
.login-option p{
    color: white;
}
.content-footer{
    gap: 28px;
    margin-top: 40px;
}
.login-option{
    cursor: pointer;
    min-height: 38px;
    max-height: 38px;
    background: rgba(0, 0, 0, .4);
    border-radius: 24px;
    gap: 8px;
}