* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-size: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fafafa;
    
}

.login-container {
    background-color: #fff;
    border: 1px solid #dbdbdb;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 320px;
    margin-top: 24px;
    font-weight: var(--font-weight-system-semibold);
}

.logo {
    width: 175px;
height: 51px;
background-repeat: no-repeat;
display: inline-block;
    margin-bottom: 12px;
    margin-top: 36px;
}

.login-form input{
    width: 100%;
    padding: 10px;
    margin: 0 0 10px;
    flex: 1 0 0px;
    height: 36px;
    margin-bottom: 10px;
    border: 1px solid #dbdbdb;
    transform: scale(calc(10 / 12)) translateY(-10px);
    left: 8px;
    line-height: 36px;
    
}


.login-form button {

    width: 100px;
    margin: 0 40px 6px;
    padding: 10px;
    background-color: #0095f6;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 8px;
    
}

.divider {
    margin: 0, 0, 10px;
    display: flex;
    align-items: center;
    top: .45em;
    height: 1px;
    position: relative;
    flex-grow: 1;
    background-color: rgb(var(--ig-separator));
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid #dbdbdb;
    height: 1px;
    position: relative;
    flex-grow: 1;
    background-color: rgb(var(--ig-separator));

}

.ou{
    margin: 0 15px;
    
    height: 1px;
    background-color: rgb(var(--ig-separator));
    margin-top: 14px;
    margin-right: 40px;
    margin-bottom: 22px;
    margin-left: 40px;
    background-color: rgb(var(--ig-primary-background));
    border: 1px solid rgb(var(--ig-elevated-separator));
}

.login-form a {
    color: #00376b;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    font-weight: 400;
    max-width: 100%;
}