/* ------- General Reset ------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* ------- Full Screen Layout ------- */
body, html {
    height: 100%;
    width: 100%;
    background: #000;
}

.screen-container {
    height: 100vh;
    width: 100%;
    background: url('/images/bg-opening.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 70px;
}

/* ------- Button Wrapper ------- */
.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.login-error {
    max-width: 320px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 59, 59, 0.18);
    border: 1px solid rgba(255, 59, 59, 0.45);
    color: #ffe7e7;
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
}

/* ------- Google Button ------- */
.google-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 14px 26px;
    border-radius: 26px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
    transition: 0.2s ease;
}

.google-btn img {
    height: 22px;
    width: 22px;
}

.google-btn span {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Hover effect */
.google-btn:hover {
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ------- Desktop Scaling ------- */
@media (min-width: 768px) {
    .google-btn {
        padding: 16px 34px;
        border-radius: 30px;
    }
    
    .google-btn img {
        height: 24px;
        width: 24px;
    }

    .google-btn span {
        font-size: 18px;
    }
}
