.notify-info-block{
margin-bottom:10px;
width:100%;
}

* {
    box-sizing: border-box;
}

input[type=text].notify-element, textarea.notify-element{
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    resize: vertical;
}

.notify-label {
    padding: 4px 10px;
    display: inline-block;
	font-weight: bold;
}

.notify-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
	width:100%;
}

.notify-button:hover {
    background-color: #45a049;
}

.notify-col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.notify-col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.notify-row-group {
margin-bottom:10px;

}
.notify-row-group: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 (max-width: 600px) {
    .notify-col-25, .notify-col-75, input[type=submit].notify-element {
        width: 100%;
        margin-top: 0;
    }
}