Follow us on instagram: https://www.instagram.com/webstreet_code/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatGPT Signup</title>
<style>
/* General reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
/* Centered container */
.container {
max-width: 350px;
margin: 50px auto;
text-align: center;
color: #333;
}
/* Logo and header */
.container img {
width: 80px;
margin-bottom: 80px;
}
h1 {
font-size: 30px;
font-weight: bold;
margin-bottom: 20px;
/* color: hsl(152, 97%, 30%); */
}
/* Input and button */
.input-container {
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.input-container input[type="text"] {
padding: 16px;
width: 100%;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
font-size: 14px;
}
.input-container button {
background-color: #10a37f;
color: white;
border: none;
padding: 15px;
margin-top: 40px;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
width: 100%;
}
.input-container button:hover {
background-color: #064d22;
}
/* Existing account login */
.login-link {
font-size: 14px;
margin: 10px 0;
color: #555;
}
.login-link span {
color: #10a37f;
cursor: pointer;
text-decoration: underline;
}
/* Divider with "OR" */
.divider {
display: flex;
align-items: center;
justify-content: center;
color: #aaa;
margin: 20px 0;
}
.divider hr {
width: 30%;
height: 1px;
background-color: #ccc;
border: none;
}
/* Social login options */
.logocontainer {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 20px;
align-items: center;
}
.logo {
display: flex;
align-items: center; /* Center items vertically in a single line */
justify-content: flex-start; /* Align items to start horizontally */
border: 1px solid #ccc;
padding: 10px 15px; /* Add padding for better spacing */
border-radius: 5px;
cursor: pointer;
width: 350px;
transition: background-color 0.3s;
}
.logo img {
width: 40px;
height: 40px;
margin:auto 0px;
margin-right: 10px; /* Space between image and text */
}
.logo h4 {
font-size: 14px;
color: #555;
margin: 0; /* Remove extra margins */
text-align: left; /* Ensure text aligns to the left */
}
.logo:hover {
background-color: #f1f1f1;
}
/* Footer links */
.lastline {
display: flex;
justify-content: center;
gap: 10px;
font-size: 12px;
color: #10a37f;
}
.lastline hr {
width: 1px;
height: 12px;
background-color: #ccc;
border: none;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo -->
<div>
<img src="./gpt.png" alt="ChatGPT Logo">
</div>
<!-- Page Title -->
<h1>Create an account</h1>
<!-- Email and Continue button -->
<div class="input-container">
<input type="text" placeholder="Email address*">
<button>Continue</button>
</div>
<!-- Already have an account link -->
<div class="login-link">
<h5>Already have an account? <span>Login</span></h5>
</div>
<!-- Divider -->
<div class="divider">
<hr> <span style="margin: 15px 15px; color:black">OR</span> <hr>
</div>
<!-- Social login buttons -->
<div class="logocontainer">
<div class="logo">
<img src="google.png" alt="Google Logo">
<h4>Continue with Google</h4>
</div>
<div class="logo">
<img src="microsoft.png" alt="Microsoft Logo">
<h4>Continue with Microsoft Account</h4>
</div>
<div class="logo">
<img src="apple.png" alt="Apple Logo">
<h4>Continue with Apple</h4>
</div>
</div>
<!-- Footer Links -->
<div class="lastline">
<p>Terms of Use</p>
<hr>
<p>Privacy Policy</p>
</div>
</div>
</body>
</html>
Top comments (0)