* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(32, 30, 30);
    color: rgb(255, 254, 254);
}

.MainContainer {
    flex: 1;
    width: 100%;
}

.Header,
.Footer {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.Content {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.Ccontent {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-shell {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    width: min(420px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.03);
}

.login-note {
    margin: 0;
    text-align: center;
}

.login-back-link {
    align-self: flex-start;
    background: transparent;
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
}

.LeftColumn {
    margin: 10px;
    padding: 3%;
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.RightColumn {
    margin: 10px;
    padding: 3%;
    width: 50%;
    flex: 1;
}

input,
textarea,
select {
    color: white;
    background-color: rgba(39, 36, 36, 0.315);
    font-family: Arial, sans-serif;
    font-size: 16px;
    border: 1px solid #555;
    padding: 8px;
    border-radius: 4px;
}

.MainForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.MainForm label {
    text-align: left;
}

.MainForm input,
.MainForm textarea,
.MainForm select {
    width: 100%;
}

.MainForm button {
    align-self: center;
    width: auto;
}

.TaskForm {
    width:100%;
    max-width: 10cm;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.TaskForm label {
    text-align: left;
}

.TaskForm input,
.TaskForm textarea,
.TaskForm select {
    width: 100%;
}

.TaskForm button {
    align-self: center;
    width: auto;
}

.task-list li {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: #f0f0f0;
    line-height: 1.5;
}

.task-list {
    list-style-type: none;
    padding: 0;
}

#descriptionBox {
    min-height: 5cm;
}

.logout-button {
    background-color: #575757;
    color: white;
    border: none;
    margin-left: 50px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.fade-in {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-out {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
