body {
    font-family: 'Arial', sans-serif;
    background-color: #0F1D2D;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container{
    position:relative;
    margin:0px auto;
    padding-top:80px;
    width:600px;
    /* text-align: center; */
}

.form-container {
    margin-top:40px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.form-container2 {
    margin-top:40px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
    outline: none;
    transition: border 0.3s ease;
}

.form-control:focus {
    border-color: #375AC7;
}

.genreOption{
    float:left;
    margin-right:10px;
    margin-bottom: 10px;
    padding:10px;
    color:#FFF;
    background: #31DC86;
    border-radius: 5px;
    cursor: pointer;
}
.genreOption:hover{
    background: #FF921E;
}

.genreOptionActive{
    background: #FF921E;
}

.btn {
    background-color: #375AC7;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #FF921E;
}

.form-actions {
    margin-top: 20px;
}
.hidden{
    display:none !important;
}

.popupLoader{
    position: fixed;
    top:0px;
    left:0px;
    width:100vw;
    height:100vh;
    background:rgba(255,255,255,0.8) url("../loader.gif") center no-repeat;
    z-index: 9999;
}