
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

body {
    background: #f6f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

.container h1 {
    font-size: 28px;
    font-weight: bold;
    color: #1e682b; 
    margin-bottom: 20px;
}

button {
    background: linear-gradient(to right, #1e682b, #2d8634); /* Darker Green */
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s ease;
    cursor: pointer;
    margin: 10px;
}
/* Form Container */
form {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;

}
form label {
    font-size: 14px;
    font-weight: bold;
    color: #1e682b; 
    display: block;
}

input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #3a7d44; 
    border-radius: 5px;
    background: #d9f2d9; 
    font-size: 16px;
    color: #1e682b; 
}

label {
    font-weight: bold;
    color: #1e682b;
    margin-top: 10px;
}


.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}


.login-btn {
    display: flex;
    justify-content: center;
    width: 100%;
}
.buttons button {
    width: 160px; 
    height: 50px; 
    display: flex;
    justify-content: center;
    align-items: center;
}
input::placeholder {
    color: #a17c5a; 
}
