/* index.css */
.dark-mode-switch-out
{
    background-color: var(--body);
    width: 60px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid var(--dark-mode-switch-out-border);
    box-shadow: inset 0 0 6px 3px var(--dark-mode-switch-OutIn-box-shadow);
    margin: 8px 8px 0 auto;
    display: flex;
    overflow: hidden;
}
.dark-mode-switch-in
{
    background-color: var(--dark-mode-switch-in);
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 0 6px 2px var(--dark-mode-switch-OutIn-box-shadow);
    margin: auto auto auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
html.dark .dark-mode-switch-in
{
    transform: translateX(34px);
}

body
{
    background-color: var(--body);
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Consolas, monospace;
}

.Choose-your-resource-library
{
    width: 660px;
    height: 400px;
    background-color: var(--body);
    border-radius: 20px;
    box-shadow: 0 0 10px 10px var(--Choose-your-resource-library-box-shadow);
    border: 1px solid var(--Choose-your-resource-library-border);
    margin: 100px auto 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.text1
{
    color: var(--text);
    font-size: 40px;
    font-weight: 800;
    margin: 60px auto 0 auto;
}

.text2
{
    color: var(--text);
    font-size: 30px;
    font-weight: 300;
    margin: 20px auto auto auto;
}

input
{
    width: 380px;
    height: 40px;
    background-color: transparent;
    color: var(--input-text);
    font-size: 24px;
    font-family: Consolas, monospace;
    border: 0;
    border-bottom: 3px solid var(--input-border-botton);
    border-radius: 10px;
    outline: none;
    margin: 10px auto 6px auto;
}
input::placeholder
{
    color: var(--input-placeholder);
    font-size: 24px;
    font-family: Consolas, monospace;
}

.OK
{
    background-color: #2793ff;
    width: 200px;
    height: 40px;
    border: 0;
    border-radius: 25px;
    margin: auto auto 24px auto;
    font-size: 24px;
    font-weight: 600;
    font-family: Consolas, monospace;
    color: var(--OK-text);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(39, 147, 255, 0.35);
}
.OK:hover
{
    background-color: #1a7ae6;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(39, 147, 255, 0.45);
}
.OK:active
{
    transform: scale(0.96);
}

.NotFound
{
    width: 320px;
    height: 20px;
    background-color: transparent;
    color: #ff2a2a;
    font-size: 16px;
    margin: 0 auto 0 140px;
    display: none;
}

.Go-to-Announcement
{
    background-color: transparent;
    width: 130px;
    height: 20px;
    margin: 0 0 2px auto;
    text-align: center;
    color: #1a7ae6;
}

a
{
    color: #1a7ae6;
    font-size: 15px;
    text-decoration: none;
    margin: auto 0 auto auto;
}
a:hover
{
    text-decoration: underline;
}