/*
| Template created by Kadir Hanoglu
| Author: Kadir Hanoglu
| URL: https://dortbilisim.com
| Create Date: 30.06.2021
| Last Update: 01.07.2021
| File: ws-default-webpage.css
*/

* {
	outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    scrollbar-color: rgba(200,205,210,1) rgba(255,255,255,1);
	box-sizing: border-box;
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background-color: rgba(255,255,255,1);
    border-radius: 20px;
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(200,205,210,1);
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,1);
}

html, body {
	background: rgb(255,255,255);
	background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(200,205,210,1) 60%, rgba(200,205,210,1) 100%);
	margin: 0;
	padding: 0;
	width: 100%;
	position: relative;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
}

a, a:hover, a:focus, select, option, input, button, textarea {
	color: #0066ff;
	text-decoration: none;
	outline: none !important;
	position: relative;
	transition: .5s all;
}

img {
    max-width: 100%;
}

.main-body {
	background-image: url(https://static.cdn.dortbilisim.com/assets/images/yucca.webp);
	background-repeat: no-repeat;
	background-position: 20% bottom;
	display: flex;
	width: 100%;
	min-height: 100vh;
	padding: 75px 0;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.main-wrapper {
	background-color: rgba(255,255,255,0.75);
	position: relative;
	display: flex;
	width: 840px;
	height: 50vh;
	border-radius: 25px;
	align-items: center;
	justify-content: space-evenly;
	flex-direction: column;
}

.logo {
	width: 200px;
}

.content {
	padding: 0 50px;
	font-size: 0.9em;
	color: #7b93ab;
	line-height: 2em;
	text-align: center;
}