Login Form with HTML and CSS Animation

Login form with HTML and CSS with animation of boxes and this is the look and feel rich.


Preview:

 

HTML CODE:

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Animated Login Form</title>
</head>
<body>
    <form class="box" action="log.html" method="POST">

        <h1>Login To MD</h1>
        <input type="text" name="" placeholder="Username">
        <input type="password" name="" placeholder="Password">
        <input type="submit" name="" value="Login">
    </form>
    
</body>
</html>


CSS CODE:

style.css

body{
    margin0;
    padding0;
    font-familysans-serif;
    background#34495e;
}

.box{
    width300px;
    padding40px;
    positionabsolute;
    top50%;
    left50%;
    transformtranslate(-50%-50%);
    background#191919;
    text-aligncenter;
}

.box h1{
    colorwhite;
    text-transformuppercase;
    font-weight500;
}

.box input[type = "text"],.box input[type = "password"]{
    border0;
    backgroundnone;
    displayblock;
    margin20px auto;
    text-aligncenter;
    border2px solid #3498db;
    padding14px 10px;
    width200px;
    outlinenone;
    colorwhite;
    border-radius24px;
    transition0.25s;
}

.box input[type = "text"]:focus,.box input[type = "password"]:focus{
    width280px;
    border-color#2ecc71;
}

.box input[type = "submit"]{
    border0;
    backgroundnone;
    displayblock;
    margin20px auto;
    text-aligncenter;
    border2px solid #3498db;
    padding14px 40px;
    outlinenone;
    colorwhite;
    border-radius24px;
    transition0.25s;
    cursorpointer;
}

.box input[type = "submit"]:hover{
    background#2ecc71;
    border-color#2ecc71;
}


Download all files from here:

Download


-By CodeStudio


CodeStudio

Hi, I am Mayur Dehade. I am a Computer Engineering student, Web Developer, Programmer, and also blogger. On this CodeStudio blog, I have uploaded new and interesting coding-related posts and material like notes and provide a full code file.

Post a Comment (0)
Previous Post Next Post