body {
    width: 100%;
    height: 100vh;
}
.header {
    height: 10%;
    width: 100%;
    background-color: var(--dark);
    padding: 15px 30px;
}

.logo {
    font-weight: bold;
    width: 80px;
    height: 100%;
}
.logo img {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.container.reset {
    flex-direction: column;
    gap: 20px;
}
.sub-container {
    padding: 20px;
    min-width: 20%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.sub-container.reset {
    justify-content: flex-start;
    height: fit-content;
    gap: 20px;
}

.title {
    font-weight: 900;
    font-size: 25px;
    font-family: var(--head-font);
    color: var(--dark);
}

.subtitle {
    font-size: 14px;
    color: var(--text-faded);
    margin-bottom: 20px;
}

.form {
    text-align: left;
    width: 100%;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--head-font);
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--bg-dark);
    border-radius: 2px;
    font-size: 14px;
    font-family: var(--text-font);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--head-font);
    font-weight: bold;
}

.support-text {
    margin-top: 15px;
    font-size: 15px;
    color: var(--text-faded);
}

.contact-link {
    color: var(--accent-dull);
    text-decoration: none;
}
#resendResetBtn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    margin-left: 4px;
}
#resendResetBtn:disabled {
    color: var(--text-faded);
    cursor: not-allowed;
}
