*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serifa;
}

body{
    height: 100vh;
    background: url("images\ \(1\).jpg") no-repeat center / cover;
    padding: 30px 20%;
}

.container{
    position: relative;
    height: 100%;
    background: rgba(255,255,255, .1);
    border: 2px solid ,rgba(255,255,255, .1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transform: scale(0);
    animation: zoom-in 2s ease forwards;
    border-radius: 5px;
  background-color:transparent;
  
  padding: 10px;
    
}


@keyframes zoom-in {
    100%{
        transform: scale(1);
    }
}
header{
    position: absolute;
    top: 0;
    width: 100%;
    padding:25px 5%;
    display:flex ;
    justify-content: space-between;
    align-items:center ;
    z-index: 100 ;
}

.animated{
    transform: translateY(30px);
    opacity: 0;
    animation: slide-in 2s ease forwards;
    animation-delay:  2s ;
}
@keyframes slide-in {
    100%{
         transform: translateY(0);
         opacity: 2;
    }
}
.logo{
    font-size: 25px;
    color:white;
    text-decoration: none;
    font-weight:600 ;
}

.navbar a {
    font-size: 18px;
    color:white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    border-bottom: 2px solid transparent; 
    transition: .5s;
}

.navbar a:hover ,
.navbar a.active {
    border-color: #fff;
}

body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid ;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.btn {
    display: inline-block;
    padding: 5px 5px;
    background: rgb(0, 4, 5);
    border:transparent;
    border-radius: 20px;
    box-shadow: 0 0 10px #fff;
    color:white;
    text-decoration: none;
    font-weight: 200;
    transition: .5s;
}

.btn:hover {
    background: transparent;
    box-shadow: none;
    color: #fff;
}
