@import url('./styles.css');

body{
    width: 100vw;
    height: 100vh;
    align-items: center;
    padding: 20px;
}
.logo{
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: var(--color-secondary-gold);
    margin-top: 200px;
}
.logo img{
    object-fit: contain;
    max-width: 300px;
    width: 100%;
}
.logo h1{
    font-size: 40px;
    font-weight: 500;
}
.login-card{
    max-width: 600px;
    width: 100%;
    padding: 20px;
    display: flex;
    border: 2px solid var(--color-secondary);
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login-card h1{
    color: white;
    font-size: 25px;
    font-weight: 300;
}
.input-fields{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    width: 100%;
}
.input-field{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin-bottom: 10px;
}
label{
    width: 100%;
    padding-left: 10px;
}
.input-field input{
    width: 100%;
    background-color: transparent;
    height: 50px;
    outline: none;
    border: 2px solid var(--color-secondary);
    padding: 5px;
    padding-left: 10px;
    border-radius: 10px;
    color: white;
    font-size: 15px;
}
input::placeholder{
    color: rgba(255, 255, 255, 0.678);
}
.status{
    width: 90%;
    text-align: center;
    min-height: 20px;
}
button{
    width: 50%;
    height: 50px;
    border-radius: 10px;
    font-size: 18px;
    color: white;
    border: none;
    background-color: var(--color-secondary);
}