/* Import page font */
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #151617;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container, .register-container {
    background-color: #212121;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0px 20px 10px rgba(33, 33, 33, 0.1);
    width: 300px;
    text-align: center;
    color: #fff;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.input-group {
    margin-bottom: 10px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.back-button {
    background-color: #7c3030;
    border-radius: 4px;
    color: #FFF;
    margin-top: 10px;
}

.back-button:hover {
    background-color: #752129;
}

.error {
    color: red;
    font-size: 14px;
}

.success {
    color: #4CAF50;
    font-size: 14px;
}
