body {
    display: flex;
    margin: none;
    padding: none;
    background-image: url("../assets/images/main-bg.png");
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.text-container {
    display: flex;
    flex-direction: column;
    width: 380px;
    margin-top: 10vw;
    margin-left: 30vw;
}

.main-title {
    font-family: "Arvo-Regular";
    font-size: 48px;
    color: #EB7C29;
    margin-bottom: 10px;
}

.description-text {
    font-family: "Arvo-Regular";
    font-size: 24px;
    color: #269DBD;
}

.nav-button {
    display: flex;
    width: 180px;
    height: 30px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "NotoSans-Medium";
    background-color: #001856;
    color: #FCFCFC;
    border: none;
    border-radius: 18px;
    transition:
        background-color 0.6s;
}

.nav-button:hover {
    cursor: pointer;
    background-color: #EE963A;
}

.container {
    display: flex;
    flex-direction: column;
    width: 280px;
    margin-left: 20vw;
    margin-top: 10vw;
    border: solid;
    border-width: 1px;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.1);
}

.input-container {
    display: flex;
    flex-direction: column;   
}

.form-title {
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: "Arvo-Regular";
    font-Size: 18px;
    color: #EB7C29;
}

.form-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.input-bar {
    margin-bottom: 10px;
    width: 210px;
    height: 35px;
    border-radius: 14px;
    background-color: rgba(22, 65, 175, 0.3);
    border: none;
    outline: none;
    font-size: 14px;
    font-family: "NotoSans-Medium";
    padding-left: 10px;
    color: #FCFCFC;
}

.login-button {
    width: 90px;
    height: 25px;
    border-radius: 18px;
    border: none;
    font-family: "NotoSans-Medium";
    font-size: 12px;
    background-color: #001856;
    color: #FCFCFC;
    transition:
        background-color 0.6s;
}

.login-button:hover {
    cursor: pointer;
    background-color: #EE963A;
}

.label-text {
    font-family: "NotoSans-Regular";
    font-size: 16px;
    margin-bottom: 5px;
    padding: 0px;
    color: #467FC7;
}

.small-text {
    text-align: center;
    font-size: 14px;
    font-family: "NotoSans-Medium";
    color: #008BFF;
}

.link-text {
    text-decoration: none;
}

.link-text:hover {
    cursor: pointer;
    color: #EB7C29
}