.btn{
	cursor:pointer;
		position: relative;
		padding:20px 6px;
		background-color: none;
		border-top-right-radius:10px;
		border-bottom-left-radius:10px;
		transition:all 1s;
		&:after,&:before{
			content:" ";
			width:10px;
			height:5px;
			position:absolute;
			border :0px solid #343e6b;
			transition:all 1s;
			}
		&:after{
			top: -1px;
			left:-1px;
			border-top:5px solid #0003bd;
			border-left:5px solid #0003bd;
		}
		&:before{
			bottom:-1px;
			right:-1px;
			border-bottom:5px solid #0003bd;
			border-right:5px solid #0003bd;
		}
		&:hover{
			border-top-right-radius:0px;
		border-bottom-left-radius:0px;
		background-color: rgb(233, 41, 41);
		background:rgb(221, 0, 0);
		color:rgb(241, 234, 234);
			&:before,&:after{
				
				width:100%;
				height:100%;
				 border-color:rgb(26, 13, 82);
			}
		}
	}
	h5 b{
		text-decoration: underline;
	}
	.data-container{
		padding-left: 1px;
		margin-left:1px;
		width: 25vh;
		display:flex;
		justify-content: center;
		align-items: center;
	}
	#selected{
		background: #666464;
		padding: 10px 40px;
	}
	.xul{
		list-style-type: none;
		margin: 10px;
	   padding: 20px;
	}
	.xli{float:left;}
	.xli a{
		color: rgb(255, 255, 255);
		text-decoration: none;
	}
	
	.brand img{
		width: 30px;
		height: 30px;
		margin-left: 20px;
	}
	.brandi img{float:left;
		width: 120px;
		height: 120px;
		margin-left: 1px;
	
	}
	
	.icons{
		margin: 0;
		padding: 0;
		display: flex;
		position: fixed;
		margin-left: 30px;
		top: 6%;
		left: 90%;
		transform: translate(-50%, -50%);
	}
	.icons li{
		list-style: none;
		margin: 5px 5px;
	}
	.icons li a{
		position: relative;
		display: block;
		width: 30px;
		height: 50px;
		text-align: center;
		line-height: 53px;
		background: none;
		border-radius: 50%;
		font-size: 20px;
		color: #ffffff;
		transition: .5s;
	}
	.icons li a::before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 100%;
		background:none;
		transition: .5s;
		transform: scale(.9);
		z-index: -1;
	}
	.icons li a:hover::before{
		transform: scale(1.1);
		box-shadow: 30px 30px 60px #f80000;
	}
	.icons li a:hover{
		color: none;
		box-shadow: 5px 5px 5px #f80000;
		text-shadow: 5px 5px 5px #f80000;
	}

    

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body{
        font-family: Arial, Helvetica, sans-serif;
		background: -webkit-linear-gradient(to right, #0d3446, #3c4b5e, #0d3446);
		background: linear-gradient(to right, #0d3446, #3c4b5e, #0d3446);        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }
    .form-content{
        background: linear-gradient(
            50deg,
            rgba(40, 42, 55, 0.356) 50%,
            rgba(40, 42, 55, 0.397)
            ),
        url(for.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 50px;
        width: 1000px;
        border-radius: 50px;
    }
    .form-content h2{
        color: #F4F6F9;
        font-size: 40px;
        margin-bottom: 25px;
    }
    form{
        display: flex;
        flex-direction: column;
        width: 50%;
    }
    label{
        font-size: 17px;
        color: #e3e4e9;
        margin-bottom: 10px;
    }
    input, textarea{
        padding: 17px 14px;
        background-color: #33364677;
        border: 0;
        font-size: 15px;
        color: #F4F6F9;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    :focus{
        outline: 1px solid #e91e1e;
    }
    .btn2{
        background-color: #bd313152;
        width: 150px;
        align-self: flex-end;
        cursor: pointer;
        
    }
    .btn2:hover{
        background-color: #f92121;
    }
    @media(max-width:991px) {
        body{
            padding: 30px;
        }
        .form-content{
            width: 100%;
        }
        form {
            width: 100%;
        }
    }