body{
    background: url('../img/bg.jpg');
    color: white;
    background-size: cover;
    background-attachment: fixed;
}
.logo-section{
    padding: 3% 0 3% 0;
}

.login-field{
    padding: 2% 0 2% 0;
}

.button-section{
    padding: 1% 0 0 0;
}

.login-section{
    width: 500px;
}
.user-detail{
    text-align: center;
}

.table-section{
    color: white;
    margin-top: 3%;
    text-align: center;
}

.no-ticket-message{
    padding-top: 6%;
}
.new-ticket{
    padding: 2%;
    border: 1px solid red;
    border-radius: 10px;
    background-color: red;
    color: white;
    font-size: 10;
}

.ticket-reply-content-section{
    width: 70%;
    padding: 3% 1% 3% 1%;
    margin: 3% 0 3% 0;
    border-radius: 30px;
    background: linear-gradient(90deg, #cc2b5e 0%,#753a88 100%);
}

.loader {
    display: none;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #cc2b5e; /* Blue */
    border-radius: 50%;
    width: 38px;
    height: 38px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  

.title{
    padding: 1% 0 1% 0;
}

a{
    text-decoration: none;
    color: white;
    transition: 0.2s;
}

a:hover{
    text-decoration: none;
    color: cadetblue;
}

.show-content{
    display: inline-block;
}

.hide-content{
    display: none;
}