*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}
body{
    min-height:100vh;
}
.auth{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(to left,#fe4102,#ffd400);
}
.auth-box{
    width:400px;
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(15px);
    box-shadow:0 20px 50px rgba(16, 215, 9, 0.35);
    color:white;
}
.auth-box h1{
    text-align:center;
    font-size:32px;
    margin-bottom:10px;
}
.auth-box h1 span{
    color:#ffe600;
}
.auth-box p{
    text-align:center;
    margin-bottom:25px;
}
.auth-box h2{
    text-align:center;
    margin:20px 0;
}
.auth-box input{
    width:100%;
    padding:15px;
    margin:8px 0;
    border-radius:30px;
    border:2px solid rgba(255,255,255,.5);
    background:transparent;
    color:white;
    outline:none;
}
.auth-box input::placeholder{
    color:white;
}


.auth-box button{
    width:100%;
    padding:15px;
    margin-top:15px;
    border:none;
    border-radius:30px;
    background:white;
    color:#0057ff;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}
.auth-box button:hover{
    background:#ffd400;
    color:black;
    transform:scale(1.04);
}
.auth-box hr{
    border:0;
    height:1px;
    background:white;
    margin:30px 0;
}
header{
    background:white;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 5px 20px rgba(10, 224, 17, 0.133);
}
.logo{
    font-size:28px;
    font-weight:bold;
    color:#ff0000;
}
.logo span{
    color:#ffd400;
}
nav a{
    margin-left:20px;
    color:#222;
    text-decoration:none;
    font-weight:bold;
}
nav a:hover{
    color:#ea791e;
}
.hero{
    height:70vh;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
    color:white;

    background:
    linear-gradient(rgba(240, 24, 24, 0.533),rgba(205, 142, 33, 0.533)),
    url(images/hero.jpg) center/cover;
}
.hero h1{
    font-size:50px;
}
.hero p{
    margin:20px;
    font-size:20px;
}
.search{
    display:flex;
    width:600px;
    max-width:90%;
}
.search input{
    flex:1;
    padding:15px;
    border:none;
    outline:none;
}
.search button{
    padding:15px 30px;
    border:0;
   background:#f30808;
    color:white;
}
.section{
    padding:60px 8%;
}
.section h2{
    text-align:center;
    margin-bottom:35px;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}
.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px #0002;
}
.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}
.card h3,
.card p,
.card h4{
    margin:15px;
}
.card h4{
    color:#000000;
}
.form{
    max-width:600px;
    margin:auto;
}
.form input,
.form textarea{
    width:100%;
    padding:15px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:12px;
}
.form textarea{
    height:120px;
}
.form button{
    width:100%;
    padding:15px;
    background:rgb(245, 1, 1);
    color:white;
    border:0;
    border-radius:12px;
}
@media(max-width:700px){
.auth-box{
    width:90%;
}
header{
    flex-direction:column;
    gap:15px;
}
.hero h1{
    font-size:32px;
}
.search{
    flex-direction:column;
}
}