﻿* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background: linear-gradient(122.6deg, #e2fbf0, #d0e6fd); /* Gradient background */
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
}

.header-bg {
    background: linear-gradient(130.82deg, #48fbc2, #05bebf);
    justify-content: center;
    text-align: center;
    width: 600px;
    margin: 0 auto;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top:-20px;
    padding-top:40px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-weight: 500;
    }

.form-control {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px #c6e0fc solid;
    background-color: #d0e6fd;
    border-radius: 5px;
    font-size: 14px;
    height:40px;
}

.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: #05bebf;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
}


.mt2
{
    margin-top:10px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .header-bg {
        background: linear-gradient(130.82deg, #48fbc2, #05bebf);
        justify-content: center;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        color: #fff;
        font-size: 18px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .header-bg h2

    {
        font-size:22px;
        height:20px;
    }

}