kaauh_ats/shapes/2.html

181 lines
4.6 KiB
HTML

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typeform Clone - Nature Theme</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background-color: #f0f7f4;
overflow: hidden;
}
.nature-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, #f0f7f4 0%, #e6f2eb 100%);
z-index: -1;
}
.leaf {
position: absolute;
opacity: 0.1;
z-index: -1;
transform-origin: center;
animation: float 15s infinite ease-in-out;
}
@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(5deg); }
}
.leaf-1 {
top: 10%;
left: 5%;
font-size: 80px;
color: #5c9d7a;
animation-delay: 0s;
}
.leaf-2 {
bottom: 15%;
right: 10%;
font-size: 100px;
color: #5c9d7a;
animation-delay: 2s;
}
.leaf-3 {
top: 30%;
right: 5%;
font-size: 70px;
color: #5c9d7a;
animation-delay: 4s;
}
.leaf-4 {
bottom: 25%;
left: 8%;
font-size: 90px;
color: #5c9d7a;
animation-delay: 6s;
}
.organic-card {
background: rgba(255, 255, 255, 0.85);
border-radius: 24px;
box-shadow: 0 10px 30px rgba(92, 157, 122, 0.1);
overflow: hidden;
}
.form-input {
width: 100%;
padding: 14px 20px;
border: 2px solid #e0ebe8;
border-radius: 12px;
font-size: 16px;
transition: all 0.3s ease;
background-color: rgba(255, 255, 255, 0.7);
}
.form-input:focus {
outline: none;
border-color: #5c9d7a;
background-color: white;
box-shadow: 0 0 0 4px rgba(92, 157, 122, 0.1);
}
.nature-button {
background: linear-gradient(135deg, #5c9d7a 0%, #4a8b67 100%);
color: white;
padding: 14px 30px;
border-radius: 12px;
font-weight: 600;
width: 100%;
border: none;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.nature-button::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
transition: left 0.5s ease;
}
.nature-button:hover::before {
left: 100%;
}
.nature-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(92, 157, 122, 0.3);
}
.divider {
display: flex;
align-items: center;
margin: 25px 0;
}
.divider-line {
flex-grow: 1;
height: 1px;
background-color: #e0ebe8;
}
.divider-text {
margin: 0 15px;
color: #5c9d7a;
font-size: 14px;
}
.social-button {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background-color: white;
border: 2px solid #e0ebe8;
transition: all 0.3s ease;
}
.social-button:hover {
border-color: #5c9d7a;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(92, 157, 122, 0.2);
}
</style>
</head>
<body>
<div class="nature-bg"></div>
<i class="fas fa-leaf leaf leaf-1"></i>
<i class="fas fa-leaf leaf leaf-2"></i>
<i class="fas fa-seedling leaf leaf-3"></i>
<i class="fas fa-leaf leaf leaf-4"></i>
</body>
</html>