.login-wrapper {
    background: #fff;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo img {
    width: 120px;
    margin-bottom: 10px;
}

.logo h3 {
    margin: 0;
    font-size: 18px;
    color: #00a6d6;
    font-weight: 500;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        top: 50%;
        left: 14px;
        transform: translateY(-50%);
        color: #9aa4b2;
        font-size: 16px;
    }

    .input-icon input {
        width: 100%;
        padding: 14px 14px 14px 44px;
        border-radius: 12px;
        border: 1px solid #cfd7e3;
        font-size: 15px;
        outline: none;
    }

        .input-icon input::placeholder {
            color: #9aa4b2;
        }

        .input-icon input:focus {
            border-color: #1e5bff;
        }

.btn-login {
    margin-top: 15px;
    width: 100%;
    padding: 14px;
    background: #1e5bff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

    .btn-login:hover {
        background: #1548d9;
    }

@media (max-width: 480px) {
    .login-wrapper {
        margin: 15px;
        padding: 30px 25px;
    }
}
