.background{
    font-family: Arial, sans-serif;
    background-image: url('/images/login.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
}

.login-container {
    background-color:rgba(0,0,0,0.7);
    color: #4cae4c;
    padding: 50px;
    border-radius: 40px;
    width: 300px;
    height: 500px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 50px;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-size: 16px;
}

input{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 40px;
    font-size: 14px;
    font-style: oblique;
    color:white;
    background-color: rgba(0,0,0,0.5);
}
.btn{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;    
}
button,.skip-link {
    border: 2px solid #ff7a3b;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: rgba(0,0,0,0.1);
    color: #ff7a3b;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    align-items: center; 
}

input:hover,button:hover,.skip-link:hover  {
    background-color:#ff7a3b;
    color: white;
}

p {
    margin-top: 15px;
    font-size: 14px;
}

.sign {
    color:yellow;
    text-decoration: none;
}
.sign:hover{
    color: white;
    text-decoration: underline;
}
