body {
    display: flex;
    background-color: teal;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container{
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

h1 {
   margin-bottom: 1rem;
   text-align: center;
   color: teal;
}

form {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

label {
    font-weight: bold;
    color: teal;
}

button {
    width: 100px;
    background-color: teal;
    color: white;
    font-weight: bold;
    border: none;
    transition: background 0.3s;
    border-radius: 5px;
    margin-left: 150px;
}

button:hover {
  background-color: #004d4d;
}

input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
}

