body {
    font-family: 'Nunito';
    background: linear-gradient(135deg, #f5f3ff, #ffe4f4);
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(../images/bg-1.png);
}

.container {
    min-width: 650px;
    height: 600px;
    padding: 80px 50px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.padding {
    margin: auto;
}

.heading h2 {
    color: #6a5acd;
    font-size: 2rem;
    margin-bottom: 0;
}

.container p {
    color: #666;
    margin-bottom: 35px;
}

.input-box {
    margin-bottom: 20px;
}

.input-box span{
    font-size: 18px;
    color: #0e1726;
}

.search-box {
    position: relative;
}

.search-box button {
    position: absolute;
    left: 5px;
    bottom: 3px;
    padding: 5px;
    padding-bottom: 7px;
    border: none;
    background-color: var(--color-input-bg);
    color: var(--color-text);
    cursor: pointer;
}

.search-box input {
    width: calc(100% - 55px);
    padding: 10px 35px;
    margin-top: 10px;
    border-radius: 5px;
}

.search-input {
    font-size: 16px;
    font-weight: 500;
    color: #0e1726;
}

.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox input {
    margin-right: 10px;
}

.checkbox label {
    font-size: 0.9rem;
    color: #555;
}

.btn {
    background: linear-gradient(90deg, #ff416c, #7f00ff);
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s linear;
}

.btn:hover {
    background: linear-gradient(90deg, #7f00ff, #ff416c);
}

.or {
    margin: 30px 0;
    color: #aaa;
    font-weight: bold;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icons a {
    text-decoration: none;
    background: linear-gradient(135deg, #ff7eb3, #7f00ff);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.08);
 }

.footer {
    font-size: 0.9rem;
    color: #555;
    margin-top: 15px;
    text-align: center;
    margin-top: 30px;
}

.footer a {
    color: #6a5acd;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
}