* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
}

.container {
   /* margin: auto;*/
    width: 400px;
    max-width: 90%;
}

.container form {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-shadow: 0;
}

.container form h1 {
    text-align: center;
    margin-bottom: 24px;
    color: black;
}

.container form p {
    text-align: center;
    margin-bottom: 20px;
    line-height: 24px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container form .form-control {
    width: 100%;
    height: 50px;
    background: white;
    outline: none;
    border-radius: 4px;
    border: 1px solid silver;
    margin: 10px 0 18px 0;
    padding: 20px 45px 20px 20px;
}
.container form .reset p {
    text-align: right;
}

.container form .btn {
    margin: 5px;
    width: 90%;
    height: 40px;
    border: none;
    outline: none;
    background: red;
    font-size: 16px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.sign-up {
    margin-top: 10px;
}

.sign-in {
    margin: 10px 0;
    border: 1px solid silver;
    width: 90%;
    height: 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.container form .sign-in p {
    text-align: center;
    line-height: 40px;
    margin: 0;
}
    
.sign-in-apple {  
    width: 90%;
    height: 40px;
    border: none;
    outline: none;
    background: black;
    font-size: 16px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.container form .sign-in-apple p {
    text-align: center;
    line-height: 40px;
    margin: 0;
}



