 * {
    box-sizing: border-box;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    resize: vertical;
}

input[type=password], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 0px 12px 12px;
    display: inline-block;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 5px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

.col-25 {
    float: left;
    width: 20%;
    margin-top: 6px;
}

.col-75 {
    float: right;
    width: 75%;
    margin-top: 6px;
}

.col-75 > img{
    margin-right: 10px;
    margin-top: 0.5%;
    width: 20px;
    height: 20px;
}

.col-50{
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.col-50>p>a{
    color: #007bff;
}

.col-50>p>a:hover{
    cursor: pointer; 
}

.modal {
    text-align: center;
    border: none;
}

.modal-content{
    background-color: #dcdcdc;
}

.modal-header {
    border-bottom: none;
}
  
.modal-footer {
    border-top: none;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}

@media screen and (min-width: 760px) { 
.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
    }
}

.modal-dialog {
display: inline-block;
text-align: left;
vertical-align: middle;
}

.modal-backdrop
{
    opacity:0.75 !important;
    background-color: #000;
}