@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/gotham-book.woff2') format('woff2');
    font-weight: 400; /* Book */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/gotham-medium.woff2') format('woff2');
    font-weight: 500; /* Medium */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/gotham-bold.woff2') format('woff2');
    font-weight: 700; /* Bold */
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotham';
}

html,
body {
    height : 100%;
}

body {
    /* background-color            : var(--color-body); */
    -webkit-overflow-scrolling  : touch;
    -webkit-text-size-adjust    : 100%;
    -webkit-tap-highlight-color : rgba(0, 0, 0, 0);
    -webkit-font-smoothing      : antialiased;
    -moz-osx-font-smoothing     : grayscale;
    margin: 0;
}

/* ===================================================================
 * # PAGE WRAPPER
 *
 *
 * ------------------------------------------------------------------- */
.page-wrapper {
    display        : flex;
    flex-direction : column;
    min-height     : 100%;
    overflow       : hidden;
    position       : relative;
}

/* ===================================================================
 * # HERO SECTION
 *
 *
 * ------------------------------------------------------------------- */
.hero {
    /* width: 100%; */
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* --------------------------------------------------------------------
 * # BACKGROUND
 * -------------------------------------------------------------------- */
.hero-bg {
    display: block;
    background-image: url(../images/photos/index/bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    filter: blur(2px);
}

.hero-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.form {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    max-width: 420px;
    width: 90%;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.6s ease-out;
}

@media (max-width: 768px) {
    .form {
        max-width: 100%;
        width: 85%;
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .form {
        width: 90%;
        padding: 30px 20px;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form img {
    width: 80%;
    margin: 0 auto 25px;
    display: block;
    animation: fadeIn 0.8s ease-out;
}

@media (max-width: 480px) {
    .form img {
        width: 70%;
        margin: 0 auto 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.form input {
    /* font-family: "Roboto", sans-serif; */
    outline: 0;
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    margin: 0 0 16px;
    padding: 14px 16px;
    box-sizing: border-box;
    font-size: 15px;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Gotham', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .form input {
        font-size: 16px;
        padding: 12px 14px;
        margin: 0 0 12px;
    }
}

.form input:focus {
    border-color: rgba(14, 88, 167, 0.5);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 0 0 3px rgba(14, 88, 167, 0.15), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    outline: none;
}

.form input::placeholder {
    color: #999;
}

.form button {
    /* font-family: "Roboto", sans-serif; */
    text-transform: uppercase;
    outline: 0;
    background: linear-gradient(135deg, #0e58a7 0%, #0a417b 100%);
    width: 100%;
    border: 0;
    padding: 14px 20px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(14, 88, 167, 0.3);
}

@media (max-width: 480px) {
    .form button {
        font-size: 14px;
        padding: 12px 18px;
    }
}

.form button:hover,
.form button:active,
.form button:focus {
    background: linear-gradient(135deg, #0a417b 0%, #082d5a 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 88, 167, 0.4);
    outline: none;
}

.form button:active {
    transform: translateY(-1px);
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-bottom: 10px;
    text-align: center;
}