﻿/* === Layout & Container === */
.beforelogin-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top */
    padding-top: 10px; /* Add spacing from top */
    min-height: 80vh; /* Ensure full page height */
}

.beforelogin-container {
    width: 400px;
    min-width:50%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    background-color: #fff;
    transform: translateY(-10%);
    opacity: 0;
    animation: beforelogin-fadeInPage 0.8s ease-out forwards;
}

@keyframes beforelogin-fadeInPage {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(-10%);
    }
}

/* === Form Container === */
.beforelogin-form-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
}

.beforelogin-sign-in-container {
    width: 100%;
}

/* === Social Icons === */
.beforelogin-social-container {
    margin: 20px 0;
}

    .beforelogin-social-container a {
        border: 1px solid #DDDDDD;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 5px;
        height: 40px;
        width: 40px;
    }

/* === Buttons === */
button {
    border-radius: 20px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

    button:active {
        transform: scale(0.95);
    }

    button:focus {
        outline: none;
    }

.beforelogin-ghost-btn {
    background-color: transparent;
    border-color: #FFFFFF;
}

/* === Inputs === */


/* === Logo === */
.beforelogin-logo {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 180px;
    height: auto;
}

@media (max-width: 768px) {
    .beforelogin-logo {
        max-width: 120px;
    }
}
