@import url("reset.css");

/* PAGE */
body{
    background: linear-gradient(135deg, #f0e4e4, #f7efe0);
    font-family: "Segoe UI", sans-serif;
}

/* NAME TITLE */
.name{
    width: fit-content;
    margin: 40px auto;
}

.name p{
    font-weight: 700;
    color: #9c7c38;
    font-size: 28px;
    letter-spacing: 2px;
}

/* FORM CONTAINER */
.info{
    margin-top: -50%;
    width: 420px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255,255,255,0.6);
    padding: 30px 35px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* FORM SECTIONS */
.info .section{
    margin-bottom: 20px;
}

/* LABELS */
.info label{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #9c7c38;
    margin-bottom: 6px;
    display: block;
}

/* INPUTS */
.info input{
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid #e0d4b8;
    background-color: #fffdf8;
    outline: none;
    transition: all 0.3s ease;
}

/* INPUT FOCUS */
.info input:focus{
    border-color: #9c7c38;
    box-shadow: 0 0 0 4px rgba(156,124,56,0.2);
}

/* BUTTON */
button{
    display: block;
    margin: 30px auto 0;
    padding: 12px 36px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #9c7c38, #b89b4f);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(156,124,56,0.4);
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
button:hover{
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(156,124,56,0.5);
}

/* BUTTON ACTIVE */
button:active{
    transform: translateY(0);
}

/* OFFER IMAGES */
.offer1 img{
    width: 550px;
    height: 740px;
    border-radius: 22px;
    box-shadow: 0 35px 70px rgba(0,0,0,0.18);
    margin-top: -45px;
}

.offer2 img{
    width: 500px;
    height: 770px;
    float: right;
    margin-top: -57%;
    border-radius: 22px;
    box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

/* IMAGE HOVER EFFECT */
.offer1 img:hover,
.offer2 img:hover{
    transform: scale(1.02);
    transition: 0.4s ease;
}
