/*google font*/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');

/* Core Layout Styles */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Ubuntu', sans-serif;
}

main {
    flex: 1 0 auto;
}

.form-div {
    margin: 50px auto 50px;
    padding: 25px 15px 10px 15px;
    border: 1px solid #000000;
    border-radius: 5px;
}

/* DiskiLink Colors */
/* Brand orange: #f7941d */
/* Brand black: #000000 */
/* Brand white: #ffffff */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #000000;
}

/* Link Styles */
a {
    color: #f7941d;
}

a:hover {
    color: #e68a18;
    text-decoration: none;
}

/* Button Styles */
.btn-warning {
    background-color: #f7941d;
    border-color: #f7941d;
    color: #000000;
}

.btn-warning:hover {
    background-color: #e68a18;
    border-color: #e68a18;
    color: #000000;
}

.btn-outline-warning {
    color: #f7941d;
    border-color: #f7941d;
}

.btn-outline-warning:hover {
    background-color: #f7941d;
    color: #ffffff;
}

/* Footer Styles */
.footer {
    border-top: 1px solid #e7e7e7;
    background-color: #f8f9fa; /* Light gray background */
    padding: 10px 0;
    margin-top: auto;
}

.footer a {
    color: #000000;
}

.footer a:hover {
    color: #f7941d !important;
}

/* Other custom styles for forms */
.form-section {
    display: none;
}
.form-section.active {
    display: block;
}