* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inter;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("Media/Background.jpg");
    background-size: cover;  
    background-repeat: no-repeat;
}

h1{
    color: white;
    font-weight: 500;
    font-size: 2rem;
}

p{
    color: white;
}

p1{
    color: #BEF7EC;
}

a{
    color: #BEF7EC;
    text-decoration: none;

}

img{
    width: 25px;
    height: 25px;

}

loginFrame{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 40%;
    height: 80vh;
    background-color: #1D1D25;
    opacity: 0.8;
    border-radius: 20px;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 70%;
}

.Field{
    background-color: #17171F;
    opacity: 0,8;
    border: solid 3px #58857A;
    border-radius: 7px;
    color: #BEF7EC;
    font-size: 1rem;
    text-decoration: none;
    width: 100%;
    padding: 1rem;
    

}

.LoginButton{
    background-color: #17171F;
    opacity: 0,8;
    border: solid 3px #58857A;
    border-radius: 20px;
    color: #BEF7EC;
    font-size: 1.3rem;
    text-decoration: none;
    padding: 1rem 2rem;
    cursor: pointer;
}

.Signup{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;


}

@media screen and (max-width:484px) {
    
    loginFrame{
        width: 80%
    }

}