/* Modern, game-inspired landing page for Dblock */
body {
    font-family: 'Gabarito', 'Averia Libre', 'Silkscreen', sans-serif;
    background: linear-gradient(135deg, #181c2b 0%, #232946 100%);
    min-height: 100vh;
    margin: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.index-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
}

.index-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 30px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.index-hero-content {
    max-width: 420px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.index-hero-content h1 {
    font-family: 'Silkscreen', 'Gabarito', sans-serif;
    font-size: 2.8em;
    margin: 0 0 18px 0;
    color: #ffcc00;
    letter-spacing: 1px;
}

.brand {
    color: #fff;
    background: linear-gradient(90deg, #ffcc00 60%, #ff9900 100%);
    padding: 2px 10px;
    border-radius: 8px;
    font-family: 'Silkscreen', 'Gabarito', sans-serif;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 32px;
    color: #e0e0e0;
}

.btn {
    display: inline-block;
    padding: 13px 32px;
    margin-right: 12px;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-family: 'Gabarito', sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #ffcc00;
    color: #232946;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s, transform 0.1s;
    text-decoration: none;
}
.btn.secondary {
    background: #232946;
    color: #ffcc00;
    border: 2px solid #ffcc00;
}
.btn:hover {
    background: #ff9900;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.btn.secondary:hover {
    background: #ffcc00;
    color: #232946;
}

.index-hero-image {
    min-width: 260px;
    max-width: 400px;
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-hero-image img {
    width: 100%;
    max-width: 340px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    background: #e6eaff;
}

.index-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 1100px;
}
.feature {
    background: rgba(35, 41, 70, 0.92);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 32px 28px 24px 28px;
    text-align: center;
    width: 260px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.15s, box-shadow 0.15s;
}
.feature:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.feature img {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    background: #181c2b;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.feature h3 {
    font-family: 'Silkscreen', 'Gabarito', sans-serif;
    font-size: 1.3em;
    color: #ffcc00;
    margin: 0 0 10px 0;
}
.feature p {
    color: #e0e0e0;
    font-size: 1em;
    margin: 0;
}

.site-footer {
    width: 100%;
    background: #181c2b;
    color: #bdbdbd;
    text-align: center;
    padding: 18px 0 10px 0;
    margin-top: 40px;
    border-top: 2px solid #232946;
    font-size: 1em;
    letter-spacing: 0.5px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.index-hero {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    background: none;
    gap: 0;
    min-height: 420px;
}
.login-side {
    background: #f7fafd;
    border-radius: 14px 0 0 14px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.10);
    padding: 36px 32px 32px 32px;
    min-width: 320px;
    max-width: 340px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.login-logo {
    width: 180px;
    margin-bottom: 18px;
    margin-top: 0;
}
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}
.login-form label {
    font-weight: bold;
    color: #232946;
    margin-bottom: 2px;
    margin-top: 8px;
    font-size: 1em;
    text-align: left;
}
.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #d1d5e9;
    background: #eaf1fa;
    color: #232946;
    font-size: 1em;
    margin-bottom: 2px;
    box-sizing: border-box;
}
.login-form input:focus {
    outline: 2px solid #ffcc00;
    background: #fffbe6;
}
.login-form .forgot-link {
    color: #1a8cff;
    font-size: 0.98em;
    margin-bottom: 8px;
    text-align: left;
    text-decoration: none;
}
.login-form .forgot-link:hover {
    text-decoration: underline;
}
.login-form button {
    width: 100%;
    padding: 13px 0;
    background-color: #1aadc6;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1.2em;
    font-family: 'Gabarito', sans-serif;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.login-form button:hover {
    background-color: #0e7fa6;
}

.hero-content-side {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: none;
    border-radius: 0 14px 14px 0;
    overflow: hidden;
    position: relative;
}
.hero-bg-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("https://www.habboz.ws//assets/img/indeximage.png") no-repeat;
    background-size: cover;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 0 14px 14px 0;
    filter: brightness(0.98) saturate(1.1);
}
.register-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 173, 198, 0.92);
    border-radius: 12px;
    padding: 36px 38px 30px 38px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.10);
    text-align: center;
    min-width: 320px;
    max-width: 420px;
    color: #fff;
    z-index: 2;
}
.register-cta h1 {
    font-family: 'Silkscreen', 'Gabarito', sans-serif;
    font-size: 2.1em;
    margin: 0 0 18px 0;
    color: #fff;
    letter-spacing: 1px;
}
.register-cta .brand {
    color: #ffcc00;
    background: none;
    padding: 0;
    border-radius: 0;
}
.register-cta .subtitle {
    font-size: 1.1em;
    margin-bottom: 28px;
    color: #fff;
}
.btn.big {
    display: block;
    width: 100%;
    font-size: 1.3em;
    padding: 18px 0;
    background: #F44336;
    color: #fff;
    border-radius: 8px;
    font-family: 'Gabarito', sans-serif;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: none;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
}
.btn.big:hover {
    background: #0e7fa6;
    color: #fff;
}
@media (max-width: 900px) {
    .index-hero {
        flex-direction: column;
        gap: 24px;
        padding: 40px 10px 20px 10px;
    }
    .index-hero-content {
        align-items: center;
        text-align: center;
    }
    .login-form {
        margin-left: 0;
        margin-top: 24px;
    }
    .index-hero {
        flex-direction: column;
        max-width: 98vw;
    }
    .login-side {
        border-radius: 14px 14px 0 0;
        max-width: 100vw;
        min-width: 0;
        width: 100vw;
        margin-bottom: 0;
    }
    .hero-content-side {
        border-radius: 0 0 14px 14px;
        min-width: 0;
        width: 100vw;
    }
    .hero-bg-image img {
        border-radius: 0 0 14px 14px;
    }
    .register-cta {
        min-width: 0;
        max-width: 95vw;
        padding: 24px 4vw 20px 4vw;
    }
}
@media (max-width: 700px) {
    .index-features {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .feature {
        width: 90vw;
        min-width: 0;
        padding: 22px 10px 18px 10px;
    }
    .index-hero-image img {
        max-width: 90vw;
    }
}

body {
    font-family: 'Gabarito', 'Averia Libre', 'Silkscreen', sans-serif;
    background: linear-gradient(135deg, #181c2b 0%, #232946 100%);
    min-height: 100vh;
    margin: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.register-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}
.register-hero {
    background: rgba(35, 41, 70, 0.97);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    padding: 38px 32px 32px 32px;
    margin-top: 40px;
    min-width: 320px;
    max-width: 350px;
    width: 100%;
    text-align: center;
    position:relative;
}
.register-hero h1 {
    font-family: 'Silkscreen', 'Gabarito', sans-serif;
    font-size: 2em;
    color: #ffcc00;
    margin-bottom: 24px;
}
.register-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
    padding: 12px;
    border-radius: 7px;
    border: none;
    font-size: 1em;
    background: #232946;
    color: #fff;
    margin-bottom: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.register-form input:focus {
    outline: 2px solid #ffcc00;
    background: #232946;
}
.register-form button {
    padding: 12px;
    background: #ffcc00;
    color: #232946;
    border: none;
    border-radius: 7px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.register-form button:hover {
    background: #ff9900;
    color: #fff;
}
.register-hero a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 0.98em;
    margin-top: 8px;
    display: block;
}
.register-form a:hover {
    text-decoration: underline;
}
.site-footer {
    width: 100%;
    background: #181c2b;
    color: #bdbdbd;
    text-align: center;
    padding: 18px 0 10px 0;
    margin-top: 60px;
    border-top: 2px solid #232946;
    font-size: 1em;
    letter-spacing: 0.5px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.register-logo {
    position:absolute;
    top: -34px;
    left: 95px;
}
@media (max-width: 600px) {
    .register-hero {
        min-width: 0;
        width: 95vw;
        padding: 18px 6vw 18px 6vw;
    }
}

.success-message,
.error-message {
    padding: 10px;
    background-color: #1f243b;
    border-radius: 10px;
    color: #CFD8DC;
    margin-bottom:20px;
}