*, 
html { 
    margin: 0; 
    box-sizing: border-box;
}

body { 
    background-color: #F8F8F8;
    display: flex; 
    flex-flow: column nowrap;
    align-items: center;
    padding-top: 40px;
}

button { 
    cursor: pointer;
}

.container { 
    width: clamp(304px, 95%, 370px); 
    display: flex;
    flex-flow: column nowrap; 
    align-items: center;
    gap: 24px;
}

.login-subcontainer { 
    width: 100%;
    height: 394px;
    padding: 24px 32px 24px 32px;

    background-color: #FFF; 
    border-radius: 5px;
    border: 1px solid #D3D3D3;

    display: flex;
    flex-flow: column nowrap; 
    align-items: center;
    justify-content: space-between;
}

.input-box { 
    display: flex; 
    flex-flow: column nowrap; 
    gap: 24px;
    width: 100%;
}

.register-box { 
    background-color: #FFF;
    border: 1px solid #D3D3D3; 
    border-radius: 5px;

    display: flex; 
    justify-content: center; 
    align-items: center;

    width: 100%; 
    height: 68px;
}

.input { 
    height: 42px; 
    
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: #F8F8F8;
    padding-left: 8px;

    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.login-button { 
    background-color: #184993;
    border-radius: 5px;
    border: none;
    height: 40px;

    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #FFF;
}

.facebook-button { 
    display: flex; 
    flex-flow: row nowrap; 
    align-items: center;
    justify-content: center;
    gap: 16px;

    height: 40px;

    background-color: #1877F2;
    border: none; 
    border-radius: 5px;

    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFF;
}

input, span { 
    display: flex; 
    flex-flow: color nowrap;
    justify-content: space-between;
    align-items: center;
}

p { 
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;

    color: #5A686C;
    padding-left: 12px; 
    padding-right: 12px;
}

hr {
    border: none; 
    border-bottom: 1px solid #EBEBEB;
    width: 100%;  
}

.logo-img { 
    width: 150px;
}

.img-app { 
    width: clamp(144.5px, 45%, 153px);
}

.app-box { 
    width: 100%;
    display: flex; 
    flex-flow: row nowrap; 
    justify-content: center;
    gap: 16px;
}