* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: #201f1f;
    font-family: Google Sans, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.logo {
    width: 150px;
    margin: 20px 0;
    font-family: 'Google Sans', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #3CB371;
}

.menu_button{
    background-color: #3CB371;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu_button:hover {
    background-color: #2E8B57;
}

.btn_red{
    background-color: #2E8B57;
}
.btn_red:hover {
    background-color: red;
}

main {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
    color: #3CB371;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-box button {
    background-color: #3CB371;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-box button:hover {
    background-color: #2E8B57;
}
