html {
    background-color: #f2f2f2;
    padding: 0%;
    margin: 0%;
}

body {
    display: flex;
    background-image: url(/public/img/main2_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    padding: 0%;
    margin: 0%;
    justify-content: center;
    align-items: center;
}

.container {
    border: solid 1px white;
    backdrop-filter: blur(10px);
    width: 45%;
    height: 99vh;

    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    margin-bottom: 4rem;
    border-radius: 15px;
    background-color: #A01E28;
    width: 90%;
    height: 14%;
    object-fit: contain;
    padding: 5px 0px 5px 0px;
    margin-top: 3rem;
    box-shadow: #939090 0px 0px 5px 0px;
    border: solid 3px white;
}

#b01 {
    width: 50%;
    height: 2rem;
    background-color: #ffffff;
    border: solid 1px white;
    border-radius: 10px;
    box-shadow: #939090 0px 0px 5px 0px;
    border: solid 1px white;
    color: #A01E28;
    transition: all 0.3s ease-in-out;
}

#b01:hover {
    background-color: #A01E28;
    color: #ffffff;
    box-shadow: #939090 0px 0px 10px 0px;
    cursor: pointer;
}

#b02 {
    width: 50%;
    height: 2rem;
    background-color: #ffffff;
    border: solid 1px white;
    border-radius: 10px;
    box-shadow: #939090 0px 0px 5px 0px;
    border: solid 1px white;
    color: #A01E28;
    transition: all 0.3s ease-in-out;
}

#b02:hover {
    background-color: #A01E28;
    color: #ffffff;
    box-shadow: #939090 0px 0px 10px 0px;
    cursor: pointer;
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.input-label {
    font-size: 1rem;
    color: #484848;
}

.input-field {
    width: 90%;
    height: 2.4rem;
    border: solid 0.2px #A01E28;
    border-radius: 10px;
    color: #484848;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 0;
    padding-top: 0;
    transition: all 0.3s ease-in-out;
}

.input-field:focus {
    outline: none;
    border: solid 1px #A01E28;
}

.input-field:hover {
    box-shadow: #939090 0px 0px 5px 0px;
}

.title {
    display: flex;
    text-align: center;
    text-shadow: 0px 2px 5px #64646475;
    color: #974545;
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}