﻿/* HOME */
.home-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px);
}

.home-card {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

    .home-card h1 {
        font-size: 34px;
        margin-bottom: 12px;
    }

.home-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 36px;
}

.btn-auth {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .btn-auth:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(37,99,235,0.35);
    }
