body {
    background-image: url('../images/bgimg.png');
    background-color: #5b6f51;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.input-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.input-row label {
    flex: 0 0 110px;
    margin-right: 25px;
    font-size: 15px;
    font-weight: bold;
    color: #345522;
    text-align: right;
}

.input-row input[type="text"],
.input-row input[type="password"],
.input-row input[type="email"],
.input-row input[type="file"],
.input-row textarea {
    flex: 1;
    padding: 10px;
    border: 0.3px solid #c9b9ac;
    border-radius: 0px; 
    background-color: #ffe5e5;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    margin-bottom: 7px;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background-color: #fcfaf8;
    padding: 70px;
    border-radius: 17px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 570px;
    text-align: left;
}

.form-container h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f7d53;
    text-align: center;
}

.container label {
    font-size: 17px;
    font-weight: bold;
    color: #345522;
}

.button-container, .forgot-container {
    display: flex;
    justify-content: center;
}

button {
    background-color: #1f7d53;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 30px;
    width: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-top: 25px;
}

button:hover {
    background-color: #27391c;
    color: #ffe5e5;
}

.btn {
    background-color: #1f7d53;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 30px;
    width: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-top: 25px;
    align-items: center;
}

.button-container {
    text-align: center;
}

.btn:hover {
    background-color: #27391c;
    color: #ffe5e5;
}

.btn.cancel {
    background-color: #17592d;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 30px;
    width: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-top: 25px;
        align-items: center;
}

.btn.cancel:hover {
    background-color: #1b2d0f;
    color: #ffe5e5;
}

.psw a {
    font-weight: bold;
    text-decoration: none;
    
}

.psw a:hover {
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 8px; 
}

::-webkit-scrollbar-track {
    background: #ffe5e5; 
}

::-webkit-scrollbar-thumb {
    background: #1f7d53;
    border-radius: 10px; 
}

::-webkit-scrollbar-thumb:hover {
    background: #345522;
}

.loginlink {
    text-align: center;
    margin-top: 15px;
}

.loginlink a {
    color: #41a76a;
    text-decoration: none;
}

.loginlink a:hover {
    text-decoration: underline;
}