/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 12 May 2025, 21:00:26
    Author     : gasperrencof
*/

body{
    background: linear-gradient(182deg, #170506 0%, #3f1014 35%, #641a1f 70%, #610d0e 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


h1{
    text-align: center;
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
    color: #d2b887;
    margin-bottom: 10px;
}

h1 strong{
    font-weight: 800;
    margin-top: -8px;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
}

.main-box{
    text-align: center;
    z-index: 1;
    position: relative;
    width: 500px;
    max-width: 100%;
}

.main-box .input-box{
    display: flex;
}

.main-box .input-box input{
    height: 50px;
    flex: 0 0 70%;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0 20px;
    color: #000000;
}

.main-box .input-box button{
    flex: auto;
    background-color: #d2b887;
    font-weight: 700;
    border: none;
    max-width: 200px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: .3s;
    color: #000000;
}

.main-box .input-box button:hover{
    opacity: 0.7;
}

.main-img{
    position: absolute;
    opacity: 0.2;
    max-width: 100%;
    bottom: 10px;
}


@media screen and (max-width: 968px){

    h1{
        font-size: 50px;
        margin-bottom: 20px;
    }

    h1 strong{
        display: block;
    }

    .main-box .input-box{
        flex-direction: column;
    }

    .main-box .input-box input{
        flex: none;
        border-radius: 0px;
        width: 100%;
    }

    .main-box .input-box button {
        flex: none;
        height: 50px;
        border-radius: 0px;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    body{
        display: block;
    }

    .main-box{
        width: 80%;
        margin: 0 auto;
        margin-top: 40%;
    }

}