﻿/* Login - start */

:root {
    --brand: #FFB700;
    --tertiary: #FC6C24;
    --text-primary: #211B11;
    --text-secondary: #514532;
    --text-accent: #6B4B00;
    --outline: #837560;
    --success: #0C8949;
    --danger: #BA1A1A;
    --warning: #FC6C24;
    --black: #211B11;
    --white: #ffffff;
}

hr.divider {
    border: 0;
    height: 1px;
    background-color: #E0E0E0;
    margin: 20px 0;
}

.welcome-page {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;    
}

    .welcome-page .content-wrapper {
        width: 360px;
    }

    .welcome-page .header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        margin-top: 50px;
    }

        .welcome-page .header h1 {
            color: #FC6C24;
            font-size: 45px;
            margin-bottom: 0;
            font-family: 'Poppins', sans-serif;
            font-weight: bold;
        }

        .welcome-page .header p {
            color: #a8a8a8;
            font-size: 16px;
            margin-bottom: 0;
            font-family: 'Poppins', sans-serif;
        }

    .welcome-page .login-btn {
        width: 100%;
        font-weight: 600;
        background-color: #FDB614;
        color: #242323;
        font-size: 1rem;
        padding: 0.75rem 3rem;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        transition: background-color 0.2s ease;
        font-family: 'Poppins', sans-serif;
    }

        .welcome-page .login-btn:hover {
            background-color: #ffcf62;
        }

.login-logo {
    margin-bottom: 30px;
    max-width: 80px;
}
