/* ============================== Defaults ============================== */

:root {
    --bg-color: rgba(255, 255, 255, 0.363);
    --secondary-color: #fff;
}

.dark_mode {
    --bg-color: rgba(0, 0, 0, 0.363);
    --secondary-color: rgb(20, 20, 20);
}

* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

body {
    font-size: 10pt;
    color: #000;
    width: auto;

    overflow: hidden;
    
    background: url("../assets/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================== Utils ============================== */

.line {
    background-color: rgba(255, 255, 255, 0.521);
    height: 2px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 10px;
}

h4 {
    color: white;
    margin-left: 20px;
    z-index: 200;
    margin-top: 10px;
}

.acrylic {
    background: var(--bg-color);
    box-shadow: 0px 25px 50px rgba(0,0,0,0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all .3s ease-in-out;
}

.glow-font {
    text-shadow: 0 5px 10px rgba(255, 255, 255, 0.5);
}

.btn {
    border-radius: 3px;
    border: none;
    outline: none;
    margin-top: 35px;
    font-size: 20px;
    color: white;
    width: 170px;
    height: 25px;
    border: solid 1px white;
    margin-left: 20px;
}

.label {
    margin-top: 20px;
}

.txt {
    color: white;
    border: none;
    padding: 15px;
    font-size: 14px;

    background: transparent;
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.192);
    border-radius: 3px;
    backdrop-filter: blur(10px);
}

.txt:focus {
    border: none;
    outline: none;
}

.h1 {
    color: white;
    font-size: 120px;
    font-weight: 700;
}

.h2 {
    color: white;
    font-size: 50px;
    font-weight: 700;
}

.h3 {
    color: white;
    font-size: 35px;
    font-weight: 700;
}

/* ============================== Main ============================== */
#wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -webkit-box;
}

#container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

#main {
    width: 700px;
    height: 460px;
    text-align: center;
}

#header {
    margin-top: 20px;
}

#clock {
    margin-top: 60px;
    font-style: italic;
}

.box {
    width: 500px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 10px;

    margin-left: 15%;
}

.box i {
    font-size: 20px;
    color: #fff;
}

.box input {
    flex: 1;
    height: 40px;
    border: none;
    outline: none;
    font-size: 15px;
    padding-left: 10px;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
}

.socials {
    margin-top: 50px;
}

.socials a{
    color:rgb(255, 255, 255);
    padding: 5px;
    transition: 0.3s ease-in-out;
}

.socials a:hover{
    text-shadow: 0 5px 10px rgba(255, 255, 255, 0.5);
}

/* ============================== Settings ============================== */
.leftMenu {
    width: 0px;
    height: 100%;
    min-height: 100vh;
    transition: .4s;

    border-radius: 0px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

    z-index: 200;
}

.leftMenu .settings {
    margin-top: 25px;
    width: 100%;
    height: 100%;
    transition: .6s;
    opacity: 0;
    padding-bottom: 20px;
}

.leftMenu .txt {
    margin-left: 10px;
}

.leftMenu input:focus {
    border: none;
    outline: none;
}

.bglbl {
    margin-top: 20px;
}

.leftMenu .label {
    padding-left: 20px;
}

.leftMenu input::placeholder {
    color: rgb(104, 104, 104);
}

#updateBg {
    transition: .3s ease-in-out;
}

#updateBg:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

/* ============================== Reset ============================== */
#resetAll {
    transform: translateY(-10px);
    transition: .3s ease-in-out;
}

#resetAll:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

#resetColors {
    transition: .3s ease-in-out;
}

#resetColors:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

/* ============================== Theme ============================== */
.theme {
    z-index: 1000;
    line-height: 12px;
    width: 25px;
    height: 25px;
    font-size: 8pt;
    font-family: tahoma;
    margin-top: 1px;
    margin-right: 2px;
    position:absolute;
    top: 10px;
    right: 10px;
}

.theme i {
    font-size: 20px;
    color: var(--secondary-color);

    transition: all .3s ease-in-out;
}

.theme:hover{
    cursor: pointer;
}