body {
    html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}


body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;  
}


.footer {
    background: hsl(210, 78.80%, 55.70%);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    font-size: 15px;
    letter-spacing: 1px;
}

    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}
h1, h2 { text-align: center; }
.project {
    background: #fff;
    margin: 20px auto;
    padding: 15px;
    border-radius: 7px;
    max-width: 600px;
    box-shadow: 0 2px 6px #bbb;
}
form { max-width: 400px; margin: 20px auto; }
input, textarea { width: 100%; margin-bottom: 10px; }
a { margin-right: 10px; }
.dashboard-actions {
    text-align: center;
    margin-bottom: 25px;
}

.dashboard-actions .btn {
    background: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s;
}
.dashboard-actions .btn:hover {
    background: #1abc9c;
}

.register-actions {
    text-align: center;
    margin-top: 25px;
}
.register-actions .btn {
    background: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s;
}
.register-actions .btn:hover {
    background: #1abc9c;
}

.contact-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.contact-page-wrapper h2 {
    margin-bottom: 18px;
    text-align: center;
}

.contact-form {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 7px;
    box-shadow: 0 2px 6px #bbb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    height: 80px;
}

.contact-form .btn {
    background: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form .btn:hover {
    background: #1abc9c;
}
