@import url("https://fonts.googleapis.com/css2?family=tajawal:wght@400;600&display=swap");

body {
    background: #0c0c0d;
    font-family: 'tajawal', sans-serif;
    color: #c7b7f6;
    font-size: 14px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
}

.container {
    text-align: center;
}

.container * {
    color: #c7b7f6;
    text-decoration: none;
}

.container a {
    color: #7289DA;
    text-decoration: none;
}

.container a:hover {
    text-decoration: none;
}

.intent {
    margin: 5px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.intent label {
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
}

.intent .priv {
    color: #5e3ec0;
    text-decoration: none;
}

.result {
    font-size: 24px;
    margin-top: 20px;
    text-decoration: none;
}

.presets {
    margin-top: 20px;
    text-decoration: none;
}

.presets select,
.presets a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.presets select {
    background-color: #30177b;
    color: #fff;
    text-decoration: none;
}

.presets select option {
    background-color: #161617;
    color: #c7b7f6;
    text-decoration: none;
}

.presets a {
    background-color: #30177b;
    color: #ffffff;
    text-decoration: none;
}

.presets a:hover,
.presets select:hover {
    opacity: 0.9;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkbox-container .custom-checkbox {
    width: 18px;
    height: 18px;
    background-color: #444;
    border-radius: 3px;
    position: relative;
    transition: background-color 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #3d1e97;
}

.checkbox-container .custom-checkbox::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background-color: #3d1e97;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .custom-checkbox::after {
    opacity: 1;
}

.main {
    display: flex;
    height: 100vh;
}

.main .blur {
    position: absolute;
    height: 15.625rem;
    width: 15.625rem;
    background-color: #a216e4;
    filter: blur(250px);
    z-index: -999;
}

.main .up {
    top: -50px;
    left: 1500px;
}

.main .down {
    top: 700px
}
