﻿.home-page {
    min-height: calc(100vh - 70px);
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.home-card {
    width: 100%;
    max-width: 600px;
    text-align: center;
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.home-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 28px;
    user-select: none;
}

.home-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

    .home-title span {
        color: #d7b56d;
    }

.home-tagline {
    color: #9d9d9d;
    font-size: 18px;
    margin-bottom: 35px;
}

.home-divider {
    width: 80px;
    height: 2px;
    background: #d7b56d;
    margin: 0 auto 35px;
}

.home-error-title {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
}

.home-error-message {
    color: #b5b5b5;
    line-height: 1.7;
    font-size: 16px;
}
