*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f5f5f5;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:20px;
}

.form-box{
    width:100%;
    max-width:520px;
    background:linear-gradient( 135deg, #ffffff, #fff7f2, #ffe7d1);
    padding:40px;
    border-radius:20px;
    border-top:10px solid #d65f00;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* Logo */

.logo{
    text-align:center;
    margin-bottom:25px;
}

.logo img{
    width:220px;
    margin-bottom:15px;
}

.logo h2{
    color:#d65f00;
    font-size:28px;
    margin-bottom:8px;
}

.logo p{
    color:#666;
    font-size:15px;
}

/* Heading */

.form-box h1{
    text-align:center;
    color:#d65f00;
    font-size:32px;
    margin-bottom:30px;
}

/* Field */

.field{
    margin-bottom:22px;
}

.field label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
    color:#333;
}

.field input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.field input:focus{
    border-color:#d65f00;
    box-shadow:0 0 12px rgba(214,95,0,.25);
}

/* Button */

.submit-area button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:30px;
    cursor:pointer;
    font-size:17px;
    color:#fff;
    background:linear-gradient( to right, #d65f00, #b84f00);
    transition:.3s;
}

.submit-area button:hover{
    transform:translateY(-3px);
}

/* Links */

.link{
    margin-top:18px;
    text-align:center;
}

.link a{
    text-decoration:none;
    font-weight:bold;
    color:#d65f00;
}

/* Footer */

.footer{
    margin-top:25px;
    text-align:center;
    font-size:14px;
    color:#666;
}

.footer h3{
    color:#d65f00;
    margin-bottom:8px;
}

body{
    margin:0;
    padding:20px;
    min-height:100vh;
    background:linear-gradient(rgba(255,255,255,0.45),rgba(255,255,255,0.45)),url("images/bg1.jpg") no-repeat center center fixed;
    background-size:cover;
    display:flex;
    justify-content:center;
    align-items:center;
}

@media(max-width:576px){

.form-box{
    padding:25px;
}

.logo img{
    width:170px;
}

.form-box h1{
    font-size:26px;
}
}