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

body{
    background: linear-gradient(rgb(67, 15, 11),rgb(0, 0, 0));
    background-size: cover;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

.nav{
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 0px;
    margin-left: 100px;
    color: red;
    font-size:28px;
}

hr {
    border: none;
    border-top: 0.2px solid gray;
    margin: 0;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
}

.signin{
    margin-top: 10px;
    color: white;
    display: flex;
    text-align: center;
    flex-direction: column;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    font-size: 20px;
    gap:20px;
}

.info{
    text-align: left;
}

.info p{
    margin-top: 10px;
    font-size:17px;
}

.btn{
    gap: 20px;
}

.btn input {
    width: 100%;
    padding: 16px 18px;
    font-size: 18px;
    line-height: 1;
    background-color: rgba(28, 27, 27, 0.75);
    margin-bottom: 20px;
    border: 1px solid #e50914;
    color: white;
    border-radius: 4px;
}

.btn input:focus{
    border-color: #e50914;
    outline: none;
}

.btn .continue{
    margin-top: 20px;
    background-color: #e50914;
    color: white;
    padding: 16px 18px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    width: 100%;
}

.help{
    text-align: left;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.link {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.link a{
    color: white;
    
}
