@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/* Center the form on the page */
body{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background-image: url("../img/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.form-centered, form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 390px;
    padding: 28px;
    background-image: url("../img/wood.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.login-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    color: white;
    text-align: center;
    margin: 0 0 8px 0;
}
.username-input,
.password-input,
.email-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin: 0;
    box-sizing: border-box;
}
.field label {
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    margin-bottom: 4px;
}

.login-button {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.95);
    border-radius: 6px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    box-shadow: none;
    transition: background-color .15s ease, transform .06s ease;
}
.login-button:hover{ background-color: rgba(255,255,255,0.06); }
.backToHomeBtn {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    background: rgba(0,0,0,0.35);
    padding: 6px 10px;
    border-radius: 6px;
}
.register-link {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: lightblue;
}