*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #6dd5ed, #2193b0, #fbc2eb);
}

.container{
    width: 380px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    text-align: center;
}

.icon{
    width: 90px;
    height: 90px;
    margin: auto;
    margin-top: -80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #2c8db0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

h2{
    margin-bottom: 25px;
    color: #555;
}

.input-box{
    position: relative;
    margin-bottom: 15px;
}

.input-box i{
    position: absolute;
    left: 15px;
    top: 15px;
    color: #888;
}

.input-box input{
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.btn{
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #2c8db0;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.btn:hover{
    opacity: .9;
}

.link{
    margin-top: 20px;
    font-size: 14px;
}

.link a{
    text-decoration: none;
    color: #2c8db0;
    font-weight: bold;
}

.back{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    font-size: 24px;
}
