/* Start Global Rules */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');
:root {
	--main-color: #0075ff;
    --main-color-alt: #0099FF;
	--text-color: #000;
	--backgound-color: #fff;
	--main-transition: 0.5s;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
body {
    height: 100vh;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
    background-image: url(../image/backgound.png);
}
body::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(to top, #fff 40%, rgb(255, 255, 255, 0.6));
}
/* End Global Rules */
/* Start Password */
.content {
    width: 300px;
    position: relative;
    z-index: 100000;
}
.serial {
    width: 100%;
    background-color: var(--backgound-color);
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 99999px;
    height: 60.69px;
    border: 2px solid var(--text-color);
    color: var(--main-color);
}
.genrate {
    background-color: var(--text-color);
    display: block;
    margin: 20px auto; 
    width: fit-content;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999999px;
    color: var(--backgound-color);
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}
/* End Password */
