﻿* {
    box-sizing: border-box;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 0px 0px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

    input[type=submit]:hover {
        background-color: #45a049;
    }

.col-25 {
    float: left;
    width: 15%;
    /*margin-top: 15px;*/
}

.col-75 {
    float: left;
    width: 50%;
    /*margin-top: 10px;*/
}

/* 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;
    }
}

.btn {
    background: #24702c;
    background-image: -webkit-linear-gradient(top, #24702c, #24702c);
    background-image: -moz-linear-gradient(top, #24702c, #24702c);
    background-image: -ms-linear-gradient(top, #24702c, #24702c);
    background-image: -o-linear-gradient(top, #24702c, #24702c);
    background-image: linear-gradient(to bottom, #24702c, #24702c);
    -webkit-border-radius: 7;
    -moz-border-radius: 7;
    border-radius: 7px;
    font-family: Arial;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
}

    .btn:hover {
        background: #3cb0fd;
        background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
        background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
        background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
        background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
        background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
        text-decoration: none;
    }

.label {
    font-size: 14px;
    color: #6a6666;
}

.alert {
    padding: 20px;
    background-color: #04AA6D;
    color: white;
}
.failalert {
    padding: 10px;
    background-color: #f44336;
    color: white;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    .closebtn:hover {
        color: black;
    }

.Failalert {
    padding: 20px;
    background-color: #f44336;
    color: white;
}

