@charset "UTF-8";

body {
    font-family: Inria Serif;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

a {
    color: inherit;
    text-decoration: none;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    height: 9.375rem;
    background: #FFF;
    box-shadow: 0 0.375rem 0.25rem 0 rgba(0, 0, 0, 0.25);
    margin: 0;
}

.title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.3125rem;
}

.icon {
    width: 9.375rem;
    height: 9.375rem;
}

.headText {
    color: #000;
    font-family: "Inria Serif";
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.subTitle {
    display: flex;
    flex-direction: row;
}

.mailIcon {
    display: inline-block;
    padding-right: 10px; 
}

.mailText {
    color: #7285d6;
    font-family: "Inria Serif";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-right: 80px;
}

.bodys {
    display: flex;
    width: auto;
    height: auto;
    justify-content: start;
    align-items: stretch;
    align-content: flex-start;
    flex-wrap: wrap;
}

.inputFrame {
    display: flex;
    width: 50%;
    height: 54.625rem;
    padding-top: 2rem;
    flex-shrink: 0;
    justify-content: start;
    flex-direction: column;
}

.timetableform {
    display: table;
}

.textFrame {
    display: flex;
    justify-content: space-between;
    width: 650px;
    height: auto;
    align-items: center;
    padding-top: 1.5625rem;
    padding-right: 5rem;
    padding-left: 4rem;

}

.label {
    color: #000;
    font-family: "Inria Serif";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    flex: 1;
}

.input {
    width: 16.25rem;
    height: 2.9375rem;
    padding-left: 1rem;
    border-radius: 0.625rem;
    font-size: 1.50rem;
    flex: 1;
}

.button {
    width: 21.25rem;
    height: 6.25rem;
    border: none;
    border-radius: 1.25rem;
    background: #7285d6;
    margin-top: 5rem;
    margin-left: 11.25rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.buttonText {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.outputFrame{
    display: flex;
    width: 50%;
    height: 54.625rem;
    flex-direction: column;
}

.outputText{
    color: #000;
    font-family: "Inria Serif";
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 1.875rem;
    padding-left: 0.8125rem;
}

.footer{
    display: flex;
    justify-content: start;
    align-items: center;
    width: auto;
    height: 9.375rem;
    gap: 1.3125rem;
    background: #84F3F6;
    margin: 0;
}

.footerTextFrame{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footerText {
    color: #ffffff;
    font-family: "Inria Serif";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 1.25rem;
}

.copyRight {
    color: #ffffff;
    font-family: "Inria Serif";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 1.25rem;
}

@media screen and (max-width: 1240px){
    .bodys {
        flex-direction: column;
    }
    .inputFrame {
        width: 100%;
        height: auto;
    }
    .outputFrame {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 720px){
    .header {
        width: 720px;
    }
}
