*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#ff7a00,#ffb347);

}

.login-wrapper{

width:100%;

display:flex;

justify-content:center;

align-items:center;

padding:30px;

}

.login-card{

width:430px;

background:#ffffff;

border-radius:25px;

padding:45px;

box-shadow:0 25px 60px rgba(0,0,0,.25);

}

.logo{

width:80px;

height:80px;

margin:auto;

border-radius:50%;

background:#ff7a00;

display:flex;

justify-content:center;

align-items:center;

font-size:35px;

color:#fff;

margin-bottom:20px;

}

h2{

text-align:center;

margin-bottom:8px;

}

p{

text-align:center;

margin-bottom:35px;

color:#777;

}

.input-group{

position:relative;

margin-bottom:20px;

}

.input-group i{

position:absolute;

left:15px;

top:17px;

color:#999;

}

.input-group input{

width:100%;

height:52px;

padding-left:45px;

border-radius:12px;

border:1px solid #ddd;

font-size:15px;

}

.input-group input:focus{

outline:none;

border-color:#ff7a00;

}

.login-btn{

width:100%;

height:52px;

border:none;

background:#ff7a00;

color:#fff;

font-size:16px;

font-weight:bold;

border-radius:12px;

cursor:pointer;

transition:.3s;

}

.login-btn:hover{

background:#e86f00;

}

.error{

background:#ffe5e5;

padding:12px;

margin-bottom:20px;

border-radius:10px;

color:#d40000;

text-align:center;

}