﻿/* Owner Connect 2025 Redesign - Login Page */
/* Native Sun Resort - Custom Styles */

:root {
    --dark: #100B0C;
    --green: #75B184;
    --green-2: #92C7B7;
    --pink: #F27C9B;
    --pink-2: #F9CADD;
    --navy: #224067;
    --light-gray: #F5F1E9;
    --white: #FFFFFF;
    --black: #000000;
    --border-rad: 12px;
    --p-0: 0px;
    --p-110: 110px;
    --archivo-expanded: "archivo-expanded", Helvetica, Arial, sans-serif;
    --RocGrotesk: "RocGrotesk", Helvetica, Arial, sans-serif;
    --Newsreader: "Newsreader", Helvetica, Arial, sans-serif;
    --page-color: #FAF4EA;
    --global-color-main: #fcd42d;
    --global-color-secondary: #75b184;
    --global-color-tertiary: #f27c9b;
    --global-color-btn-bg: #fcd42d;
    --global-color-btn: #100b0c;
}

/* Adobe Typekit fonts */
@font-face {
    font-family: 'archivo-expanded';
    src: url('https://use.typekit.net/af/a8c824/00000000000000007750d1cf/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'archivo-expanded';
    src: url('https://use.typekit.net/af/c2c6c9/00000000000000007750d1c8/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Google Fonts - Newsreader */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap');

/* Body & Global Styles */
body {
    font-family: var(--RocGrotesk), "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    background: var(--page-color) url(/nsr-custom-assets/images/hero-2.png) no-repeat center center fixed !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover !important;
    color: var(--dark);
    font-size: 13px;
    line-height: 1.5;
    height: 100% !important;
    margin: 0 !important;
    min-width: 320px !important;
}

.logincontainer {
    padding: 40px 20px;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login Box */
.loginbox-container {
    margin-top: 30px;
    padding: 30px;
    max-width: 350px;
    width: 100% !important;
    background-color: var(--white);
    margin: 30px auto 0;
    border-radius: 0;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

@media (max-width: 768px) {
    .loginbox-container {
        margin: 0 auto 0;
        max-width: 100%;
    }
}

/* Hide old logo and add Native Sun logo */
.loginbox-container .text-center img {
    display: none !important;
}

.loginbox-container::before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    background-image: url(/nsr-custom-assets/images/the-native-sun-logo.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 20px;
}

.loginbox-container h1 {
    text-align: center;
    font-size: 1.8em;
    font-family: var(--Newsreader);
    font-style: italic;
    color: var(--dark);
}

#login-inputs label {
    color: #333;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 5px;
}

.loginbox-container input[type=text],
.loginbox-container input[type=password] {
    height: 44px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 10px;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    padding: 0 8px;
    box-sizing: border-box;
    border-radius: 0;
    font-family: var(--RocGrotesk);
}

.loginbox-container input[type=text]:hover,
.loginbox-container input[type=password]:hover {
    border: 1px solid #b9b9b9;
    border-top: 1px solid #a0a0a0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.loginbox-container input[type=submit] {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    position: relative;
}

#login-submit {
    border: 0px;
    color: var(--light-gray);
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    background-color: var(--pink);
    padding: 17px 0px;
    font-family: var(--archivo-expanded);
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

#login-submit:hover {
    opacity: 0.9;
    border: 0px;
}

.loginbox-container #forgotpwd {
    text-align: center;
    margin-top: 15px;
}

.loginbox-container #forgotpwd a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    opacity: 0.6;
    transition: opacity ease 0.5s;
}

.loginbox-container #forgotpwd a:hover {
    opacity: 1;
}

.loginbox-container #forgotpwd .fa {
    margin-right: 5px;
}

.orangeSpinner {
    height: 50px;
    margin-bottom: 10px;
}

.validationSummary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Hidden heading */
h1.hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Overlays */
#noJsOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

#fullScreenOverlay {
    display: none;
}
