.login-box {    
    flex: 1;
    min-width: 400px;
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: auto;    
    display: flex;
    justify-content: center;
    background-color: #ffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    overflow: hidden;
    transition: transform 0.3 ease-in-out;
    /*background-image: url('/talentsports/assets/images/karate.png');
    background-size: cover; */
}

.Login {
    padding: 10px 20px;   
    
    margin-right: 2vh;   
    
}
.Login form {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    position: relative;    
    margin: 10px 0;
    
    
}
.Login img{
    width: 150px;
}
.input-group {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.input-group input {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease-in-out;

}

.input-group select {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease-in-out;

}


.input-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #888;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    
}   

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 5px;
    font-size: 14px;
    color: rgb(69, 99, 231);
    background: white;
    
}

.input-group input:focus {
    border-color: rgb(69, 99, 231);
}


.Login form button {
    padding: 10px;
    width: 100%;
    background-color: orangered;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease-in-out;
    border-radius: 6px;
    color: #ffff;
    
}
.Login form button:hover {
    padding: 10px;
    width: 100%;
    background-color: rgb(192, 53, 3);
    font-size: 16px;
    font-weight: 500;    
    
}

.Login p a {
    color: green;
    font-weight: 600;
    text-decoration: none;
}


.msg{
    width: 100%;
    color:white;
    background-color:orangered;
}