.background-container {
    /*background: url('../images/Football_net2.png') no-repeat center center;*/
/*    background-color: black;
    background-size: contain;
    display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*height: 100vh;*/
    /*width: 100%;*/
    /*position: relative;*/
}
.login-page{
    background: #24536d !important;
}
.logo-container {
    position: absolute; /* Positioned relative to the parent container */
    /*top: 20px;  Adjust as needed */
    top: 15%; /* Adjust as needed */
    width: 100%;
    text-align: center;
}
.logo {
    position: absolute;
    top: 5%; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    max-width: 30%;
    height: auto;
    z-index: 1;
}
.login-box {
    padding: 20px;
    border-radius: 8px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 20%;
    /*margin-top: 25%;*/
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container {
        top: 35%;
    }
    .login-box {
        max-width: 75%;
        margin-top: 25%
    }
}
@media (max-width: 480px) {
    .logo-container {
        top: 35%; /* Adjust logo position for mobile screens */
    }
    .login-box {
        max-width: 75%;
        margin-top: 25%/* Adjust login box size for mobile screens */
    }
}
.login-box-body{
    background: transparent !important;
}
.color-font-white{
    color: white;
}
.box-title{
    color:white;
    font-size: xx-large;
}
.custom-input{
    border-color: white;
    color: white;
    background: transparent;
}
.custom-input::placeholder{
    color:white;
}
.login-custom-button{
    color: white;
    background-color: transparent;
    border:2px solid white;
}