/*
Theme Name: Facetel 2025
Theme URI: https://facetel.com.au
Author: Hrvoje Peraic
Author URI: mailto:hrvoje.peraic@gmail.com
Description: Facetel frontend theme for campaign forms and confirmation views.
Version: 1.0.0
Text Domain: facetel
*/
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    color: #333;
}

.wrap {
    max-width: 750px;
    margin: 0px auto;
    background: #fff;
}

h1 {
    margin-top: 0;
}

select, input, button {
    font-size: 16px;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 10px;
}

.facetel-notice {
    position: absolute;
    top: 25px;
    width: 100%;
}
.facetel-notice a {
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
}

.facetel-notice p {
    text-align: center;
    font-size: 0.7em;
    margin: 0px;
}

.facetel-header {
  background: #000;
  border-radius: 20px 20px 0px 0px;
}


.hero-logo img {
  max-width: 300px!important;
  height: auto!important;
}

.facetel-header {
    background: #000 !important;
    border-radius: 20px 20px 0px 0px;
    padding: 20px 0px 0px;
}

body {
  margin: 50px 0px
}

nav {
    background: #fff;
    filter: drop-shadow(0px 4px 0px #dbdbdb);
}

.facetel-header ul.menu {
    display: flex;
    list-style-type: none;
    text-transform: uppercase;
    
    font-size: 0.8em;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 10px;
}

.facetel-header ul.menu a {
        color: #000;
        text-decoration: none;
        font-weight: 500;
}

.facetel-header ul.menu a:hover {        
    color: #af0000;
    transition: color 0.6s ease;
}


/* login screen */

/* ——— Login forma ——— */
.login-container {
    border-bottom: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin: 0px auto;
    padding: 40px 20px 90px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #111;
}

#facetel-loginform {
  max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0px auto;
}

#facetel-loginform .login-username,
#facetel-loginform .login-password {
    display: flex;
    flex-direction: column;
    text-align: left;
}

#facetel-loginform label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #555;
}

#facetel-loginform input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.2s;
}

#facetel-loginform input:focus {
    outline: none;
    border-color: #000;
}

#facetel-loginform .login-submit {
    margin-top: 0.5rem;
}

#facetel-loginform .login-submit input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 4px;
    background: #000;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

#facetel-loginform .login-submit input:hover {
    background: #333;
}

