body {
    margin: 0;
    padding: 0;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    /* min-height: 100vh; */
    font-family: 'Jost', sans-serif;
    background: linear-gradient(to bottom, #ebeaf0, #ebeaf0);
}

.main {
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 20px 50px #000;
    /* Updated styles for centering */
    position: absolute;
    /* top: 50%;
    left: 50%; */
    transform: translate(-50%, -50%);
}

label {
    color: #000;
    font-size: 2.3em;
    justify-content: center;
    display: flex;
    margin: 60px;
    font-weight: bold;
    cursor: pointer;
    transition: .5s ease-in-out;
}

input {
    width: 70%;
    height: 30px;
    background: #e0dede;
    justify-content: center;
    display: flex;
    margin: 20px auto;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
}

button {
    width: 70%;
    height: 60px;
    margin: 10px auto;
    justify-content: center;
    display: block;
    color: #fff;
    background: #573b8a;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    outline: none;
    border: none;
    border-radius: 5px;
    transition: .2s ease-in;
    cursor: pointer;
}

.card {
    width: 400px;
    height: 450px;
    margin: 10px auto;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 20px 50px #000;
    /* Updated styles for centering */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-header {
    background: #573b8a;
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    padding: 1px 0px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 50px !important;
}

.card-footer {
    text-align: center;
    margin: 20px 0px;
}