* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    background: linear-gradient(135deg, #e3f2fd, #f1f8e9);
    overflow-y: auto;
}

.left-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("https://illustrations.popsy.co/violet/money-tree.svg") no-repeat center;
    background-size: contain;
    background: rgba(255, 255, 255, 1);
}

.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(to bottom, #daeff6, #e5eee6);

}

.login-box {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.login-box .logo {
    display: block;
    width: 60px;
    margin: 0 auto 20px;
}

.login-box h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.login-box p {
    text-align: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: #fff;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #1976d2;
    outline: none;
}

.input-group svg {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #888;
}

.forgot {
    text-align: right;
    font-size: 13px;
    margin-bottom: 20px;
    display: none;
}

.forgot a {
    color: #1976d2;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #1976d2;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #125a9e;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 25px;
}

@media(max-width: 900px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        flex: 1;
    }
}
@keyframes btn {
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(0.95);
    }
}