body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0e4c57;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    background-color: #173e43;
    padding: 20px;
    color: #DDD;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    max-width: 600px;
    width: 100%;
    margin: auto;
    overflow-wrap: break-word;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #0a2e33;
    border-radius: 5px;
    background-color: #0a2e33;
    color: white;
}

.form-group button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1c6d7a;
    color: white;
    cursor: pointer;
    margin: 0 0px;
}

.form-group .signup-btn {
    width: 100%;
    border: none;
    background-color: #1c6d7a;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    border-radius: 5px;
}

.logout-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #cd1123;
    color: white;
    cursor: pointer;
    margin: 0 0px;
}

.form-group .signup-btn:hover {
    background-color: #145a64;
}

.logout-btn:hover {
    background-color: #AA0012;
}

.form-group button:hover {
    background-color: #145a64;
}
