*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth; 
}

:root{
    --bg-color:#ffffff;
    --main-color:#aa875b; /*#ffb2c0*/
    --secondary-color:#000000; /*632c3a */
    --third-color:#fcede6; /*ffeff0 */
    --main-color-rgb: 170, 135, 91;
    
    
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body{
    display: flex;
    height: 100vh;
    color:var(--third-color);
    flex-direction: column; /* Changed from row to column */
    justify-content: flex-start; /* Align items at the top */
    align-items: center;
    margin: 0 auto;
    
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*LOGIN*/

.login-container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-image: url("../images/background_index.webp") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
}

.wrapper{
    width: 450px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255,.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
}

.wrapper h1{
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255,255,255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: #fff;
}

.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.input-box select{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 10px 20px;
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none; /* Remove default arrow in Safari */
    -moz-appearance: none; /* Remove default arrow in Firefox */
}

.input-box select:after {
    content: '\25BC'; /* Unicode character for a down arrow */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    pointer-events: none;
}

.input-box select option {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
}

.wrapper .remember-forget{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.remember-forget label input{
    accent-color: #fff;
    margin-right: 3px;
}

.remember-forget a{
    color: #fff;
    text-decoration: none;
    text-align: right;
}


.remember-forget a:hover{
    text-decoration: underline;
}

.wrapper .btn{
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.wrapper .register-link{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 430px){
    .wrapper{
        width: 95%;
        padding: 30px 20px;
    }
    .login-container{
        background-position-x: 30%;
        background-position-y: center;
    }
}

/*LOGIN*/

/*404 Page*/
.error_page_container{
    background-color: var(--third-color);
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: default;
}

.error_page_container h2 {
    font-size: 250px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 1em;
    text-align: center;
}

.error_page_container h3 {
    font-size: 48px;
    color: var(--secondary-color);
    overflow: hidden; 
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
}

@media (max-width: 1750px) {
    .error_page_container h2 {
        font-size: 150px;
        -webkit-text-stroke-width: 1px;
    }
}

@media (max-width: 900px) {
    .error_page_container {
        min-height: 60%;
        background-position-x: initial;
        background-position-y: center;
    }

    .error_page_container h2 {
        font-size: 72px;
        -webkit-text-stroke-width: 1px;
        text-align: center;
    }

    .error_page_container h3 {
        font-size: 22px;
        text-align: center;

    }

}


/*404 Page*/


