body {
    background: #7E5A7B;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

* {
    font-family: 'Montserrat',sans-serif;
    box-sizing: border-box;
}

form {
    width: 100%;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0px;
    color: #362F47;
}

a {
    color: #ffffff;
}

input {
    display: block;
    border: 2px solid #ccc;
    width: 95%;
    padding: 10px;
    margin: 15px auto;
    border-radius: 5px;
}

button {
    float: right;
    background: #362F47;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    margin-right: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
    opacity: .8;
}

.error {
    background: rgba(243, 147, 164, 0.1);
    color: #F393A4;
    padding: 10px;
    width: 95%;
    border-radius: 5px;
    margin: 20px auto;
}

.success {
    background: #D4EDDA;
    color: #40754C;
    padding: 10px;
    width: 95%;
    border-radius: 5px;
    margin: 20px auto;
}

h1 {
    text-align: center;
    color: #362F47;
    margin-bottom: 30px;
    margin-top: 0px;
}

.ca {
    font-size: 14px;
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: #444;
}

.ca:hover {
    text-decoration: underline;
}

.card{
    width: 500px;
    border: 2px solid #fff;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
}

.logout{
    font-size: 14px;
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    background: #362F47;
    border-radius: 5px;
    margin-top: 20px;
}

.logout:hover{
    opacity: .8;
}

.delete{
    font-size: 12px;
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    background: #7E5A7B;
    border-radius: 5px;
}

.delete:hover{
    opacity: .8;
}

table {
    font-size: 12px;
    border-collapse: collapse;
    overflow: hidden;
    background-color: rgba(243,147,167,0.2);
    border-radius: 15px;
    width: 100%;
    
}
td, th {    
    text-align: left;
    padding: 8px;
    border: 1px solid rgba(243,147,167,0.7);
}

tr:hover {
    background-color: rgba(243,147,167,0.7) !important;
}
  
tr:nth-child(even) {
    background-color: rgba(243,147,167,0.2);
}

table tr:first-child th:first-child,
table tr:first-child td:first-child {
    border-top-left-radius: 15px;
    border: none;
}

table tr:first-child th:last-child,
table tr:first-child td:last-child {
    border-top-right-radius: 15px;
    border: none;
}

table tr:last-child th:first-child,
table tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
    border: none;
}

table tr:last-child th:last-child,
table tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
    border: none;
}

th{
    border-top: none;
}

tr>:nth-child(1){
    border-left: none;
}

tr:last-child{
    border-bottom: none;
}

/*Custom Scrollbar*/
::-webkit-scrollbar{
    background-color: #F8F3F7;
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb{
    background-color: #F393A4;
}