*{
    margin: 0px;
    padding: 0px;
}

.page{
    background: linear-gradient(to left, #a9c2ff, #f2f7fb);
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0px;
}

.main{
    margin-left: 400px;
    height: 400px;
    width: 700px;
    border: 1px rgba(0,0,0,0.3) solid;
    border-radius: 20px;
    box-shadow: 0px 0px 12px grey;
    background-color: white;
    margin-top: 150px;
    display: flex;
}

.content{
    width: 55%;
    height: inherit;
}
.headName, .headData{
    font-size: 30px;
    color: black;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 25px;
}

.headData{
    color: white;
    font-size: 28px;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 10px;
    padding-left: 5px;
}

.design{
    width: 45%;
    height: inherit;
    background-color: #02146e;
    border-radius: 120px 20px 20px 100px;
}
.inputBox{
    display: inline-block;
    margin-left: 50px;
    margin-top: 10px;
    width: 270px;
    height: 25px;
    padding-left: 10px;
}


.forgetLink{
    display: block;
    text-align: center;
    padding-top: 10px;
}

.signIn_Button, .signUp_Button{
    width: 100px;
    height: 30px;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 7px;
    background-color: #02146e;
    color: white;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
    margin-left: 140px;
}
.signIn_Button:hover{
    box-shadow: 0px 0px 5px black;
}

.signUp_Button{
    border: 1px solid white;
    margin-left: 115px;
    margin-top: 20px;
}
.signUp_Button:hover{
    box-shadow: 0px 0px 5px white;
}

.para{
    font-size: 16px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

input{
    border-radius: 5px;
    border: 1px solid black;
}


/* Media query for screen widths 600px and below */
@media (max-width: 600px) {
    /* General reset for the page layout */
    .page {
        background: linear-gradient(to left, yellow, red);
        height: auto;
        width: 100%;
        position: relative;  /* Change from fixed to relative for better responsiveness */
    }

    /* Adjust the main container */
    .main {
        margin-left: 0px; /* Remove left margin */
        margin-top: 20px; /* Reduce top margin */
        height: auto; /* Allow height to adjust */
        width: 90%; /* Make width responsive */
        flex-direction: column; /* Stack the child elements vertically */
        border: none; /* Optionally remove border */
        box-shadow: none; /* Remove box shadow on smaller screens */
        border-radius: 0px; /* Remove border radius for simplicity */
        background-color: red;
    }

    /* Adjust content section */
    .content {
        width: 100%; /* Full width for mobile */
        height: auto; /* Adjust height to content */
    }

    /* Adjust design section */
    .design {
        width: 100%; /* Full width for design */
        border-radius: 20px 20px 20px 20px; /* Remove uneven border-radius */
        margin-top: 20px; /* Add space on top */
    }

    /* Input box adjustments */
    .inputBox {
        width: 90%; /* Make input box width responsive */
        margin-left: 0; /* Remove left margin */
        margin-top: 10px;
    }

    /* Adjust buttons */
    .signIn_Button, .signUp_Button {
        width: 80%; /* Make buttons take up more width */
        margin-left: 10px; /* Align buttons */
        margin-top: 10px; /* Adjust margin */
        display: block; /* Stack buttons vertically */
        margin-bottom: 10px; /* Add space between buttons */
    }

    /* Adjust paragraphs */
    .para {
        font-size: 14px; /* Reduce font size for smaller screens */
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Adjust inputs */
    input {
        width: 100%; /* Full width for inputs */
        padding: 10px; /* Add some padding for better touch accessibility */
    }

    /* Optional: Adjust any other specific elements as needed */
}

