/*
| Template created by Kadir Hanoglu
| Author: Kadir Hanoğlu
| Mail: kadir.hanoglu@yedas.com
| Create Date: 12.10.2023
| Last Update: 21.05.2025
| File: login.css
*/

html, body {
	background-color: #fff;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
}

.layout-header {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 380px;
}

.layout-header:before {
    content: "";
    background-color: rgba(0,0,0,0.8);
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    z-index: 1;
}

#particles {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.shape {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.shape > svg {
    width: 100%;
    height: auto;
    fill: #fff;
}

.layout-content {
    position: absolute;
    width: 100%;
    z-index: 2;
    margin-top: 10rem;
    padding-bottom: 60px;
}

.layout-content-container {
    width: 540px;
    margin: auto;
}

.layout-content-header {
    display: flex;
    color: #fff;
    align-items: center;
    flex-direction: column;
    padding-bottom: 30px;
}

.layout-content-header>h1 {
    font-size: 1.3em;
    font-weight: 300;
}

.layout-content-wrapper {
    background-color: #fff;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 5px 50px rgba(0,0,0,0.1);
}

.layout-content-wrapper-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin: -15px 0 15px 0;
}

.layout-footer {
    margin: 25px 0;
    font-size: 0.8em;
    text-align: center;
    color: #b8bec9;
}

.layout-content-login-form {
    font-size: .9em;
}

.layout-content-login-form .form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.layout-content-login-form .form-group > input {
    padding-left: 50px !important;
}

.layout-content-login-form .form-group > i {
    position: absolute;
    z-index: 1;
    color: #b8bec9;
    margin-left: 12px;
}

.layout-content-login-form label {
    display: none
}

.layout-content-login-form button {
    display: block;
    width: 100%;
    color: #fff;
    font-size: .9em;
    border: 0;
    border-radius: 25px;
    margin: 10px 0 0 0;
}

#validate-form > form > p {
    display: block;
    font-size: .9em;
    color: #848c99;
    text-align: center;
}

.validate-area {
    flex-direction: row !important
}

.validate-area > input {
    width: 50%;
    height: 42px;
    float: left;
    border: 1px solid #dee1eb !important;
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important
}

.validate-timer {
    background-color: #dee1eb;
    width: 100px;
    height: 42px;
    align-content: center;
    text-align: center
}

.validate-area > button {
    width: 40% !important;
    float: right;
    margin: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important
}

@media screen and (max-width:480px) {

	.layout-header {
		height: 360px;
	}

    .layout-content-header {
        text-align: center;
    }

	.layout-content {
		margin-top: 8rem;
	}

    .layout-content-container {
        width: 90%;
    }

    .layout-content-wrapper {
        padding: 40px;
    }

    .validate-area {
        position: relative;
        flex-direction: column !important;
        align-items: center;
    }

    .validate-area > input {
        width: 100%;
        border-radius: 30px !important
    }

    .validate-timer {
        background-color: #eceef5;
        position: absolute;
        width: 60px;
        height: 42px;
        font-size: .9em;
        font-weight: 500;
        top: 0;
        right: 0;
        border-top-right-radius: 30px !important;
        border-bottom-right-radius: 30px !important;
    }
    
    .validate-area > button {
        width: 100% !important;
        margin-top: 6px !important;
        border-radius: 30px !important
    }
    
}

@media screen and (min-width: 481px) and (max-width:768px) {

    .layout-content-container {
        width: 75%;
    }

}

@media screen and (min-width: 769px) and (max-width:1024px) {
}

@media screen and (min-width: 1025px) and (max-width:1280px) {
}

@media screen and (min-width: 1281px) and (max-width:1366px) {

	.layout-header {
		height: 340px;
	}

	.layout-content {
		margin-top: 7rem;
	}

}

@media screen and (min-width: 1367px) and (max-width:1440px) {
}

@media screen and (min-width: 1441px) and (max-width:1600px) {
}

@media screen and (min-width: 1601px) and (max-width:1920px) {
}

@media screen and (min-width: 1921px) and (max-width:2560px) {

    .layout-content-container {
        width: 620px;
    }

    .layout-content-header > h1 {
        font-size: 1.4em;
    }

    .layout-content-login-form {
        font-size: 1em;
    }

    .layout-content-login-form .form-group > input {
        padding: 25px 25px 25px 70px !important;
    }

    .layout-content-login-form .form-group > i {
        margin-left: 20px;
    }

    .layout-content-login-form button {
        font-size: 1em;
        margin: 25px 0 0 0;
    }

    .validate-timer {
        width: 140px;
        height: 52px;
    }
}

@media screen and (min-width: 2561px) {
}
