/* 
style.css
this file is designed to style the OIF for every individual department 
*/

body {
    background-color: #ddd;
}

/* sets background theme */
.theme-bg{
    background-color: #aa0000;
}
.theme-text {
    
    color: #eee;
}

.theme-text-inverse {
    color: #eee;
}

.theme-rounded-border {
    border: 2px solid #aa0000;
    border-radius: 10px;
}

.theme-hr {
    background-color: #eee;
}

.form {
	border: 2px solid #aa0000;
}

.theme-btn {
    border-color: #aa0000;
    background-color: #aa0000;
    color: #eee;
}

.theme-btn:hover {
    border-color: #dd0000;
    background-color: #dd0000;
}

.theme-btn:active {
    border-color: #000;
    background-color: #000;
}