﻿/* Full-width input fields */

/*
body {
    background-image:url('../Images/RamzanM.jpg');
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-size:cover;
}
*/


.txt {
  width: 100%;
  padding: 10px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 25px;
  box-sizing: border-box;
  background-color:rgb(245,245,245);
  outline: none;
}


.form-control {
  width: 100%;
  padding: 10px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}


/*  Set a style for all buttons */
.btn {
  background-color: Maroon; 
  color: white;
  padding: 10px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 25px;
  text-align:center;
  cursor: pointer;
  width: 100%;
}

.btn:hover {
  opacity: 0.8;
}

/* Center the Login Controls in wraped in the Form container */
.form-container 
{
    
    position:absolute;
    top:15%;
    width:33%;
    left:33%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shdow: 0px 0px 10px 0px #000;
  
}

/* Add Background image to the login page */
.bg
{
    background: url('../Images/Accounting3.jpg') no-repeat;
    /*background-image:  url('../Images/Accounting3.jpg') no-repeat;
     background-image: url('../Images/Accounting3.jpg'); */
     
    height: 92vh;
    background-size: 100%;
}
   
/* Adjuste size on mobile devices using media query */ 
@media only screen and (max-width: 800px) 
{
    .form-container 
    {
        width:50%;
        left:25%;/* 100-50=50/2*/
        
    }
}

/* Adjuste  size on mobile devices using media query */ 
@media only screen and (max-width: 400px) 
{
    .form-container 
    {
        position:absolute;
        width:95%;
        left:2.5%; /* 100-90=10/2
        
    }
}