
:root{
    --bg : #fff;
    --card-bg : #64635f;
    --shadow :  0 10px 25px #0000004d;
    --text-shadow :  5px 5px 5px  #520a0a;
    --gray : #a7a2a2;
    --color : #ffffff84;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.my-container{
    padding: 20px;
    height: 100vh;
    background-image: url(./bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: fill;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.form{
    position: relative;
    width: 40%;
    /* height: 500px; */
    background: var(--shadow);
    margin: 0 auto;
    margin-top: 0px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    /* line-height: 10px; */
    padding: 25px 15px;
    box-shadow: var(--shadow);
    color: #fff;
    font-weight: 500;
}


/* for card **************************************** */
.card{
    position: relative;
    width: 40%;
    /* height: 500px; */
    background: var(--shadow);
    margin: 0 auto;
    margin-top: 0px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    /* line-height: 10px; */
    padding: 25px 15px;
    box-shadow: var(--shadow);
    color: #fff;
    font-weight: 500;
}
/* for card **************************************** */


.form label {
    font-size: 1.5rem;
}

input{
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: var(--color);
    /* color: #fff; */
}

::placeholder{
    color: #000;
}
.title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.title h1{
    font-weight: 700;
    color: #ffd700;
    text-shadow: var(--text-shadow);

}

.my-btn{
    margin-top: 30px;
    font-weight: 500 !important;
}

.required-content{
    /* display: none; */
    border-radius: 5px;
    width: 75%;
    padding-left: 20px;
    font-size: 0.75rem;
    position: relative;
    top: -10px;
    background-color: #fff;
}