154 lines
3.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typeform Clone - Minimalist</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: #f5f5f7;
overflow: hidden;
}
.geometric-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.shape {
position: absolute;
opacity: 0.05;
}
.triangle {
width: 0;
height: 0;
border-left: 100px solid transparent;
border-right: 100px solid transparent;
border-bottom: 173px solid #000;
}
.square {
width: 120px;
height: 120px;
background-color: #000;
}
.circle {
width: 140px;
height: 140px;
border-radius: 50%;
background-color: #000;
}
.hexagon {
width: 120px;
height: 69.28px;
background-color: #000;
position: relative;
margin: 34.64px 0;
}
.hexagon:before,
.hexagon:after {
content: "";
position: absolute;
width: 0;
border-left: 60px solid transparent;
border-right: 60px solid transparent;
}
.hexagon:before {
bottom: 100%;
border-bottom: 34.64px solid #000;
}
.hexagon:after {
top: 100%;
border-top: 34.64px solid #000;
}
.form-container {
max-width: 450px;
margin: 0 auto;
padding: 40px 20px;
}
.input-field {
width: 100%;
padding: 15px 20px;
margin-bottom: 15px;
border: 1px solid #e0e0e0;
border-radius: 8px;
font-size: 16px;
transition: all 0.3s ease;
}
.input-field:focus {
outline: none;
border-color: #007aff;
box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}
.btn-primary {
background: #007aff;
color: white;
padding: 14px 30px;
border-radius: 8px;
font-weight: 600;
width: 100%;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary:hover {
background: #005ecb;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}
.divider {
display: flex;
align-items: center;
margin: 25px 0;
}
.divider-line {
flex-grow: 1;
height: 1px;
background-color: #e0e0e0;
}
.divider-text {
margin: 0 15px;
color: #8e8e93;
font-size: 14px;
}
</style>
</head>
<body>
<div class="geometric-shapes">
<div class="shape triangle" style="top: 10%; left: 5%;"></div>
<div class="shape square" style="top: 20%; right: 10%;"></div>
<div class="shape circle" style="bottom: 15%; left: 8%;"></div>
<div class="shape hexagon" style="bottom: 25%; right: 15%;"></div>
</div>
</body>
</html>