body {
    background-color: #83b4b1;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Courier New", monospace;
}


.login-container {
    justify-content: center;
    background-color: #4a948f;
    border: 2px solid #4a948f;
    padding: 40px;
    width: 350px;
    box-shadow: 0 0 20px #4a948f;
    text-align: center;
    border-radius: 20px;
}

.login-container h2{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size:30px;
    justify-content: center;
}

input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    background: white;
    border: 1px solid #4a948f;
    color: #4a948f;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    font-weight: bold;
}

button {
    width: 100%;
    padding: 10px;
    background: #EB9110;
    color: white;
    border: none;
    font-weight: bold;
    font-size: large;
    border-radius: 5px;
}

.btn{ 
    width: 100%;
    padding: 10px;
    background: #EB9110;
    color: white;
    border: none;
    font-weight: bold;
    font-size:large;
    text-decoration: none;
    border-radius: 5px;
    display: block;
    text-align: center;
}

.btn:hover {
    background: #d17f0a;
}

.form-group {
    margin: 15px 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
}

.form-group input {
    width: 100%;
}

.error {
    color: #ff4444;
    background-color: #ffe6e6;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.success {
    color: #00aa00;
    background-color: #e6ffe6;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}