.min-vh-100 {
    min-height: 100vh;
}

.about-btn {
    background: rgba(3, 3, 37, 0.8);
    color: white;
}   

.login-input {
    display: flex;
    gap: 0.5rem;
    border: 1px rgba(255, 255, 255, 1) solid;
    border-radius: 100px;
    font-size: 17px;
    outline: none;
    background-color: rgba(3, 3, 37, 0.8);
    color: white;
}

.login-input:focus {
    font-size: 17px;
    background-color: rgba(3, 3, 37, 0.8);
    color: white;
}

.login-btn {
    background: #D6B355;
    border-radius: 100px;

}

.login-btn:hover {
    background: rgba(255, 255, 255, 0);
    color: white;
    border: 1px #D6B355 solid;
}


/*header*/
.login-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.login-header img {
    height: 50px;
}

.login-header h2 {
    margin-left: 10px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}


/*overall login container*/
.login-box {
    max-width: 800px;
    /* width: 100%; */
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: #000000 5px 5px 20px 5px;
    /* overflow: hidden; */
}

.bg-container {
    background: rgba(3, 2, 36, 0.8);
}

/*left side*/
.login-left {
    padding: 40px;
    color: white;
}

.login-left h3 {
    text-align: center;
}

/*right side*/
.login-right {
    padding: 50px;
    color: #fde000;
}




















/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif
}

body {
    background-image: url("./img/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.login-header{
    margin-bottom: 20px;
}

.login-header img{
    height: 50px;
}

.login-container{
    border-radius: 0;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px; */
/* } */