﻿/*body {
}
*/


.fade-in {
    opacity: 0;
    animation: fadeIn ease 1.5s;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


.page-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('/images/bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(8px);
    transform: scale(1.05);
    z-index: 0;
}

    .background-blur::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(68, 35, 89, 0.4);
    }

.content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 80px;
}


.welcome-text {
    text-align: center;
    padding: 20px;
    font-family: 'HollardSans-Medium' !important;
    color: #ffffff;
    width: 100%;
}


form {
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 10px;
}


input[type="text"],
input[type="password"] {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    text-align: center;
    outline: none;
    padding: 8px;
    color: #fff;
    font-family: 'HollardSans-Medium' !important;
}

input::placeholder {
    color: #ffffff;
    text-align: center;
}

#emailInput {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    padding: 8px;
    color: #fff;
    font-family: 'HollardSans-Medium' !important;
}


.btn-login,
.btn-sbmit {
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    border-radius: 5px;
    font-family: 'HollardSans-Medium' !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.otp-text {
    color: #ffffff;
}

.btn-login {
    background-color: #e74c3c !important;
}

    .btn-login:hover {
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
        transform: translateY(-2px);
    }

.btn-sbmit {
    background-color: #1ABC9C !important;
}

    .btn-sbmit:hover {
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
        transform: translateY(-2px);
    }

.custom-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.custom-popup {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 80%;
}

.closePopup {
    background-color: #e74c3c !important;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    border-radius: 5px;
    font-family: 'HollardSans-Medium' !important;
}
