/*
 * Habbo Hotel Style Login Page
 */

/* Import a pixel font */
@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');

/* Default Habbo-like colors and fonts */
:root {
    --habbo-blue: #0065F5;
    --habbo-blue-dark: #014CB2;
    --habbo-yellow: #FFD821;
    --habbo-border-light: #B2D8F5;
    --habbo-border-dark: #000000;
    --habbo-background: #EBEBEB;
    --habbo-widget-bg: #FFFFFF;
    --habbo-text-dark: #000000;
    --habbo-text-light: #FFFFFF;
    --habbo-font-pixel: 'Silkscreen', cursive;
}

body {
    background-color: var(--habbo-blue-dark);
    font-family: var(--habbo-font-pixel);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.login-container {
    width: 100%;
    max-width: 400px; /* A bit wider for the chunky style */
    border: 2px solid var(--habbo-border-dark);
    background-color: var(--habbo-widget-bg);
    box-shadow: 5px 5px 0px rgba(0,0,0,0.4); /* Classic drop shadow */
}

.login-header {
    background-color: var(--habbo-blue);
    color: var(--habbo-text-light);
    padding: 8px 12px;
    font-size: 16px;
    border-bottom: 2px solid var(--habbo-border-dark);
    text-shadow: 1px 1px 0px var(--habbo-blue-dark);
}

.login-content {
    padding: 20px;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px; /* More space between elements */
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--habbo-text-dark);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 2px inset var(--habbo-border-dark);
    background-color: var(--habbo-background);
    font-family: Arial, sans-serif; /* Use a clearer font for inputs */
    font-size: 14px;
    color: var(--habbo-text-dark);
    box-sizing: border-box;
}

.login-actions {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: var(--habbo-yellow);
    color: var(--habbo-text-dark);
    font-family: var(--habbo-font-pixel);
    font-size: 16px;
    border-style: outset;
    border-width: 3px;
    border-color: #ffe873 #d2b314 #d2b314 #ffe873;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background-color: #fff085; /* Lighter yellow on hover */
}

.btn-login:active {
    border-style: inset; /* Simulates a button press */
}

.alert-danger {
    color: #C12020;
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
    border: 2px dotted #C12020;
    background-color: #FEE;
}

.extra-links {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--habbo-text-dark);
}

.extra-links a {
    color: var(--habbo-blue);
    text-decoration: underline;
}

.extra-links a:hover {
    color: var(--habbo-blue-dark);
}