@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');

:root {
    --bg-color: rgb(15, 15, 20);
    --bg-color-light: rgb(25, 25, 35);
    --primary-color: rgb(34, 211, 238);
    --secondary-color: rgb(102, 126, 234);
    --primary-color-dark: rgb(20, 184, 210);
    --text-color: white;
    --text-color-secondary: rgb(200, 200, 200);
    --text-color-dark: rgb(15, 15, 20);
    --border-color: rgba(255, 255, 255, 0.1);
    --success-color: rgb(16, 185, 129);
    --transition: ease 0.2s
}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Alegreya Sans", serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var( --transition);
}

.btn {
    background-color: var(--primary-color);
    outline: none;
    border: none;
    color: var(--text-color);
    padding: 10px 20px;
    font-size: large;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-color-dark);
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
    transform: translateY(-1px);
}

.error {
    display: inline-block;
    min-height: 25px;
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

#no-script {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

#no-script>div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    color: black;
    background-color: white;
    border-radius: 20px;
    width: 60%;
    padding: 30px;
}


#no-script>div h1 {
    font-size: 25px;
    font-weight: 700;
}

#no-script>div p {
    font-size: 15px;
    display: inline-block;
    width: 100%;
    text-align: center;

}