@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-height: 100vh;
    max-width: 1366px;
    min-width: 1366px;;
    margin: 0 auto;
    background-image: linear-gradient(to bottom, #aeb6bf, #eee8d0);
    background-attachment: fixed;
}

.custom-container {
    margin: 0 15px;
}

.logo {
    display: flex;
    min-height: 10vh;
    align-items: center;
    justify-content: center;
    color: rgb(75, 75, 44);
}

.logo a {
    font-size: 32px;
    font-weight: 500;
    cursor: pointer;
    padding-top: 3px;
}

.form-box {
    width: 100%;
    max-width: 450px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 34px;
    font-weight: 450;
    text-align: center;
    margin-bottom: 20px;
    color: #353535;
}

input {
    width: 100%;
    padding: 12px;
    background: #eee;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #202020;
    background: #b7b799ff;
    transition: 0.5s;
}

button:hover {
    color: #fff;
    background: rgb(147, 147, 114);
}

.btn-modal {
    margin-bottom: 2px;
    padding: 2px 8px;
    color: #202020;
    background-color: #b7b799ff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.btn-modal:hover {
    color: #fff;
    background: rgb(147, 147, 114);
}

.ErrorMessage {
    color: red;
    text-align: center;
}